Answered Questions

  • why is multiple inheritance not allowed in java?

    pranit

    • Oct 12th, 2017

    Java does not supports multiple inheritance at all, but it supports similar feature interface. Which removes the ambiguity problem (Deadly Diamonds Of Death) and complexity of multiple inheritance....

    Kira

    • Sep 7th, 2017

    Because sub class goes into the state of ambiguity if diffrent super classes implement same method name or same variable name.