Which term is used to describe a class that inherits functionality from an existing class?
A.
Superclass
B.
Base class
C.
Inherited class
D.
Derived class
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.