1. It is one of the pillars of OOP(Object Oriented Programming)
2. It is a mechanism in which one class is allowed to inherit/re-use the features (fields and methods) of another class
3. The “extend” keyword is used to inherit any class
4. Inheritance helps in code reusability, method overriding, abstraction
5. Object is a default super-class of every class. In the absence of any other explicit super-class, every class is implicitly a sub-class of Object class
6. A sub-class inherits all the members (fields, methods, nested classes) from its super-class except Constructors of super-class because they are not class members but they can be invoked from sub-class
7. A sub-class does not inherit the private members of its parent class. However, if the superclass has public or protected methods (like getters and setters) for accessing its private fileds, these can also be used by subclass