Which type of inheritance is not supported by Java:
Which type of inheritance is not supported by Java:
Explanation
In Java, a class cannot inherit from more than one superclass to avoid ambiguity.
However, it does support single inheritance, multilevel inheritance, and hierarchical inheritance.
To achieve some aspects of multiple inheritance, Java uses interfaces, allowing a class to implement multiple interfaces.