Problem 1
What is an "is a" relationship?
Problem 3
How does base class access specification differ from class member access specification?
Problem 5
Can a derived class ever directly access the private members of its base class?
Problem 6
Which constructor is called first, that of the derived class or the base class?
Problem 7
What is the difference between redefining a base class function and overriding a base class function?
Problem 15
Protected members of a base class are like __________ members, except they may be accessed by derived classes.
Problem 21
Fill-in-the-Blank When both a base class and a derived class have destructors, the base class’s constructor is called __________ (first/last).
Problem 38
True or False The base class's access specification affects the way base class member functions may access base class member variables.
Problem 39
True or False The base class's access specification affects the way the derived class inherits members of the base class.
Problem 40
True or False Private members of a private base class become inaccessible to the derived class.