Mechanism of Inheritence:
An inheritence, whenever we execute the object of a child class,it immediately called its super constructor(from Parent).cool....

In Multiple inheritence ,we derived a child class from two parent classes.when we execute an object of the child class then it calls its two parents constructor at the same time,Sothat the memory allocation allocate duplication[ because of two parents].In java its not possible.