A derived class
Reveal answer
Fill a bubble to check yourself
A derived class
Inherits data members and member functions from base class
Inherits constructors and destructor
Object can access protected members with the dot operator
Inherits data members and member functions from base class as well as Inherits constructors and destructor
A derived class inherits all data members and member functions from its base class, except constructors and destructor. This is the fundamental mechanism of inheritance in object-oriented programming. The inheritance creates an 'is-a' relationship where the derived class extends the base class functionality.