Which term is used to describe a class that inherits functionality from an existing class?
A.
Base class
B.
Inherited class
C.
Derived class
D.
Superclass
Explanation:
Classes (but not structs) support the concept of inheritance. A class that derives from
another class (the base class) automatically contains all the public, protected, and internal
members of the base class except its constructors and destructors.