+1 vote
in Class 12 by kratos

Does Java support multiple inheritance ? Explain.

1 Answer

+1 vote
by kratos
 
Best answer

Java supports multiple inheritance indirectly through the use of interface. If case of multiple classes, there would be ambiguity. We can overcome this problem with interfaces and defining methods that are needed only.

...