
Is Java supports Multiple Inheritance? Then How ?

Hi Friend,
Java does not support multiple inheritance but it can be achieved by using the interface.
In Java, Multiple Inheritance can be achieved through use of Interfaces by implementing more than one interfaces in a class.
Thanks