Section 15.4 Word Matching Exercise

Inheritance
Base Class
Derived Class
Constructor Chaining
Destructor Chaining
also known as child class, is a class that is derived from another class.
is to define a new class by extending an existing class.
is to invoke the base class destructor when destroying an object of a derived class.
is to invoke the base class constructor when constructing an object from a derived class.
also known as parent class, is a base for defining a new class.