1.
A derived class inherits the __________ of its base class.
2.
When both a base class and a derived class have constructors, the base class's constructor is called __________ (first/last).
3.
When both a base class and a derived class have destructors, the base class s construc-
tor is called __________ (first/last).
4.
An overridden base class function may be called by a function in a derived class by using the __________ operator.
5.
When a derived class redefines a function in a base class, which version of the function
do objects that are defined of the base class call? __________
6.
A(n) __________ member function in a base class expects to be overridden in a
derived class.
7.
__________ binding is when the compiler binds member function calls at compile time.
8.
__________ binding is when a function call is bound at runtime.
9.
__________ is when member functions in a class hierarchy behave differently, depending
upon which object performs the call.
10.
When a pointer to a base class is made to point to a derived class, the pointer ignores
any __________ the derived class performs, unless the function is __________.
11.
A(n) __________ class cannot be instantiated.
12.
A(n) __________ function has no body, or definition, in the class in which it is declared.
13.
A(n) __________ of inheritance is where one class is derived from a second class,
which in turn is derived from a third class.
14.
__________ is where a derived class has two or more base classes.
15.
In multiple inheritances, the derived class should always __________ a function that
has the same name in more than one base class.
16.
The base class's access specification affects the way base class member functions
may access base class member variables.
17.
The base class's access specification affects the way the derived class inherits
members of the base class.
18.
Private members of a private base class become inaccessible to the derived class.
19.
Public members of a private base class become private members of the
derived class.
20.
Protected members of a private base class become public members of the derived class.
21.
Public members of a protected base class become private members of the derived class
22.
Private members of a protected base class become inaccessible to the
derived class.
23.
Protected members of a public base class become public members of the derived class.
24.
The base class constructor is called after the derived class constructor.
25.
The base class destructor is called after the derived class destructor.