Inheritance is the process by which objects of one class acquire the properties of objects of another class.The primary advantage of inheritance is the code reusability. By this, we mean to say that additional features or functionalities can be added to the existing class without modifying the existing one.
1. Inheritance - Objects of one class acquire properties of objects of another class
2. Primary advantage - code reusability
3. Newly inherited class have its own features in addition to already existing features.

