Multiple inheritance: The capability of a class or interface to expand more than one interface or class. In Java, multiple inheritance is only accessible in the circumstances which are shown below:
- An interface might expand more than one interface.
- Class might implement more than one interface.
Just single inheritance is feasible for a class extending the other class.