To declare class subClass a privately derived class of superClass one would write:
a. class subclass : private superClass
b. class subclass :: private superClass
c. class subclass < private superClass >
d. class subclass inherits private superClass
a. class subclass : private superClass
Computer Science & Information Technology
You might also like to view...
Date data is prefaced by the ________ symbol
A) * B) & C) # D) @
Computer Science & Information Technology
Suppose that ch1, ch2, and ch3 are variables of the type char. The input is: ? A B C ? Choose the value of ch3 after the following statement executes: ? cin >> ch1 >> ch2 >> ch3; ?
A. 'A' B. 'B' C. 'C' D. '\n'
Computer Science & Information Technology