Inheriting a derived class from a base class needs vital changes to the base class?

Options
- true
- false


CORRECT ANSWER : false

Discussion Board
C++ - Inheritance

The above statement is false. Inheriting a derived class from a base class does not require any changes to the base class. Inheritance helps user to create a new class (derived class) from a existing class (base class). Derived class inherits all the features from a Base class including additional feature of its own.

Prajakta Pandit 01-30-2017 12:42 AM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement