InterviewSolution
Saved Bookmarks
| 1. |
Explain inheritance. |
|
Answer» Inheritance is the process of creating new classes, called derived class, from existing or base classes. The derived class inherits all the capabilities of the base class. Using Inheritance some qualities of the base classes are added to the newly derived class, apart from its own features. Inheritance permits code reusability. |
|