Multilevel Inheritance occurs when a class extends a class that extends another class . For example, class C extends class B, and class B extends class A. This is referred to as multilevel Inheritance.
Read moreWhat is a single inheritance in Java?
Single inheritance enables a derived class to inherit properties and behavior from a single parent class . It allows a derived class to inherit the properties and behavior of a base class, thus enabling code reusability as well as adding new features to the existing code.
Read more