If the derived class classD overrides a public member function functionName of the base class classB, then to specify a call to that public member function of the base class, you use the statement ____.
A. classD::functionName();
B. classB::functionName();
C. classD.functionName();
D. classB.functionName();
Answer: B
You might also like to view...
Which of the following is not a disadvantage of default memberwise copy with objects containing pointers?
a. Having the possibility of leaving a dangling pointer. b. Allowing both objects to point to the same dynamically allocated storage. c. Allowing the destructor of one object to be called while leaving the second pointer, to the same memory location, intact. d. Requiring the explicit overloading of the assignment operator.
When the CentOS 7 execute bit is set for the owner, what will the SUID bit be set to?
A. e B. o C. s D. x
Which cascade option enables you to change the data in the primary key in the table on the ONE side of the relationship?
A) Cascade Update Related Fields B) Cascade Update Related Records C) Enforce Referential Integrity D) Cascade Delete Related Records
____ a selection is always a smart idea because you never know when you might want to access the selection again in the future.
A. Duplicating B. Saving C. Sharing D. Cropping