Multiple Choice
If setRadius is a Circle class function and myCircle is a Circle object, which of the following statements would set myCircle's radius to 2.5?
A) setRadius(2.5) ;
B) myCircle.setRadius(2.5) ;
C) Circle.setRadius(2.5) ;
D) Circle(setRadius(2.5) ) ;
E) None of the above
Correct Answer:

Verified
Correct Answer:
Verified
Q30: A private member function may only be
Q31: Object-oriented programming is centered around objects that
Q32: A class must have exactly one constructor.
Q33: In C++ and other object-oriented programming languages,
Q34: Which of the following statements correctly creates
Q36: In OOP terminology, an object's member variables
Q37: When a member function is defined outside
Q38: A C++ member function that uses, but
Q39: A constructor must have the same name
Q40: A class declaration creates an object.