Java supports multiple inheritance

Skill/Topic: Inheritance
A) True
B) False

Showing Answers 1 - 20 of 20 Answers

chaitanya

  • Jan 17th, 2006
 

it doesn't support,b'coz to avoid the confusion about the parent class

  Was this answer useful?  Yes

java does not support multiple inheritance.if we see interfaces it seems that it support.as inheritance is deriving of characteristics. we are providing the characteristics to the interfaces that are implemented in a class but not deriving of characteristics

  Was this answer useful?  Yes

saumendra11

  • Aug 16th, 2006
 

java doesnot support multiple inheritance .but it support multiple interface.

  Was this answer useful?  Yes

Guest

  • Jan 6th, 2007
 

no java does not supports multiple interface because of class name conflict.

It is implemented through Interfaces.

  Was this answer useful?  Yes

jonbon

  • Jul 9th, 2007
 

No, Java doesn't support multiple inheritance directly, but java does multiple inheritance through the help of his interface. Because interface doesn't have any body implementation, its all left to the child class which implements this.So by this it support multiple inheritance.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions