11. Which of the following calls a function named displayName, passing it no actual arguments?
A. call displayName;
B. call displayName ();
C. displayName;
D. displayName();
Advertisement
12. The feature that allows you to use the same function name for separate functions that have different argument lists is called _____
A. overriding
B. overloading
C. constructing
D. destructing
Advertisement
13. Which of the following are valid characters constants?
A. ‘\n’
B. ‘\\’
C. ‘\0’
D. All of the above
E. None of the above
Advertisement
14. With a template class, _____ type is generic
A. no
B. exactly one
C. at least one
D. at most one
Advertisement
15. If you want to use a class to define objects in many different programs, you should define the class in a C++ _____ file
A. header
B. program
C. source
D. text
Advertisement
< PREVIOUS POSTObject Oriented Programming Using C++ - Section 2