Multiple Choice
For the following code, which statement is not true? class Point
{
private:
double y;
double z;
public:
double x;
};
A) x is available to code that is written outside the class.
B) The name of the class is Point.
C) x, y, and z are called members of the class.
D) z is available to code that is written outside the class.
Correct Answer:

Verified
Correct Answer:
Verified
Q10: More than one destructor function may be
Q17: You must use the private access specification
Q18: One purpose that constructor functions are often
Q20: A _ is a member function that
Q22: Assume that myCar is an instance of
Q22: What is the output of the
Q30: Objects in an array are accessed with
Q32: Assuming that Rectangle is a class name,
Q39: This is used to protect important data.<br>A)public
Q40: If you do not declare an access