Object Oriented Programming Using C Plus Plus - Study Mode
[#421] If you omit any constructor argument when you instantiate an object, you must use default values
Correct Answer
(B) for all parameters to the right of the argument
[#422] The C++ expression p → val means the same thing as
Correct Answer
(C) (*p).vai
[#423] Which of the following tells C++ to display numbers with zero decimal places?
Correct Answer
(C) setprecision(0)
[#424] Code that has already been tested is said to be _____
Correct Answer
(C) reliable
[#425] If no constructors can specified for a derived class, objects of the derived class will use the constructors in the base class
Correct Answer
(A) True