Answer the following statements true (T) or false (F)
1. A derived class may not have any classes derived from it.
2. In C++11, if a derived class attempts to override a final member function, the compiler generates an error.
3. C++11 provides a way for a derived class to inherit some of the base class's constructors.
4. In C++11, using constructor inheritance, it is possible for any of the base class's constructors to be inherited.
1. F
2. T
3. T
4. F
You might also like to view...
Which of the following is a legal call to the displayOutput function?
void displayOutput(int total); a. void displayOutput(myTotal); b. displayOutput(int mytotal); c. displayOutput(myTotal); d. cout << displayOutput(myTotal);
The ________ function causes the entire program to terminate, regardless of which function or control mechanism is executing.
A) terminate() B) return() C) continue() D) exit() E) break()
A(n) _________________________ is information that exists on a physical medium such as paper.
Fill in the blank(s) with the appropriate word(s).
Item B in the accompanying figure shows a preview of the current page.
Answer the following statement true (T) or false (F)