Answered Questions

  • Why java does not support Multiple Inheritance?Why java is not pure Object Oriented?

    RaghunathBhairavaJosula

    • Aug 23rd, 2015

    Java does not support Multiple inheritance by extending multiple classes as in its constructor we call one super class constructor by super(). But still we can achieve the multiple inheritance by implementing N number of interfaces.

    Ravi

    • Dec 1st, 2014

    The Reason here is.... In our class (Class C) if I write super inside the constructor it needs to go to immediate super class(B). If my class C extends two classes( B and A), and in my class if i writ...