Computer Science - Object Oriented Programming Using C++

16.
Functions that returns information about an object's state can be classified as ________
inspector functions
mutator functions
auxiliary functions
manager functions
Answer: Option
Explanation:
No answer description is available. Let's discuss.

17.
An auxiliary function _____
return information about data members
changes the state of data members
performs an action or service
creates and destroys objects
Answer: Option
Explanation:
No answer description is available. Let's discuss.

18.
To create and execute a C++ program, you need to have access to
a C++ compiler
a C++ translator
an object code editor
a text editor
both (a) and (d)
Answer: Option
Explanation:
No answer description is available. Let's discuss.

19.
If you omit any constructor argument when you instantiate an object, you must use default values______
for all parameters to the constructor
for all parameters to the right of the argument
for all parameters to the left of the argument
for no other parameters
Answer: Option
Explanation:
No answer description is available. Let's discuss.

20.
Many programmers separate a class into two files: _____
one for the declarations and one for the implementations
one for the void functions and one for the other functions
one for the public data and one for the private data
one for the primary functions and one for the auxiliary functions
Answer: Option
Explanation:
No answer description is available. Let's discuss.