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