Computer Science - Object Oriented Programming Using C++

26.
With communicational cohesion
a tasks and the data are related
the tasks are related; the data are not
the data are related; the tasks are not
the tasks and the data are unrelated
Answer: Option
Explanation:
No answer description is available. Let's discuss.

27.
The function printDataMembers() is mot likely a(n) ________
inspector functions
mutator functions
auxiliary functions
manager functions
Answer: Option
Explanation:
No answer description is available. Let's discuss.

28.
The data type listed at the beginning of a value-returning function's header indicates the type of data the function will _____
return
pass
receive
Answer: Option
Explanation:
No answer description is available. Let's discuss.

29.
The code class Descendant : virtual public Ancestor indicates that
the members of Ancestor will be included more than once in Descendant
the members of Ancestor will be included only once in Descendant
the members of Descendant will be included more than once in Ancestor
the members of Descendant will be included only once in Ancestor
Answer: Option
Explanation:
No answer description is available. Let's discuss.

30.
Inheritance is the principle that
Classes with the same name must be derived from one another
Knowledge of a general category can be applied to more specific objects
C++ functions may be used only if they have logical predecessors
One function name may invoke different methods
Answer: Option
Explanation:
No answer description is available. Let's discuss.