Java does not support multiple inheritance. But we can achievethis using interface.A class can\'t extends more than one classbut an interface can extends more than oneinterface.Example:interface I1{//some abstract methods here}interface I2{//some abstract methods here}interface I3 extends I1,I2{//some abstract methods here}