What are the types of Inheritance?

Questions by pradeeppk

Showing Answers 1 - 38 of 38 Answers

GOKILA

  • Oct 25th, 2005
 

The answer is:

1, single inheritance

2,multiple inheritance

3,multilevel inheritance

4,hierarchial inheritance

venkatesh

  • Nov 16th, 2005
 

Along with them hybrid inheritence is there

  Was this answer useful?  Yes

DEEPAK KUMAR MAHAPATRA(TCS KOCHI)

  • Nov 22nd, 2006
 

Hi,

Types of inheritances are
1.Single inheritance
2.Multiple inheritances
3. Multi-path inheritance
4.Multi level inheritance
5.Virtual path inheritance
6.Hierarchical inheritance
7.Hybrid inheritance

With regards
Deepak Kumar Mahapatra(tcs kochi)

Sunil Arora(Theikos (India))

  • Sep 27th, 2007
 

Basically  Java supports only four types of inheritance:
1) Single Inheritance
2) Multi Level Inheritance
3) Hierarchicval Inheritance
4) Hybrid Inheritance

We can take support for multiple inheritance also but with the help of Interface.

swagatika

  • Oct 11th, 2011
 

I have the class mall, using this what will be the inheritances?

  Was this answer useful?  Yes

shravan

  • Jan 31st, 2012
 

There is only single Inheritence available in Java.

Multiple Inheritence is not available in Java because of following reasons..

1. It leads to confusion for the java program.
2. The programmer can achieve multiple inheritence by using interfaces.
3. The programmer can achieve multiple inheritence by repeatedly using single inheritence.

  Was this answer useful?  Yes

kavita

  • Feb 23rd, 2012
 

There are four types of inheritance Single inheritance,Multiple level inheritance,Multi level inheritance,and Hybride inheritance

  Was this answer useful?  Yes

There are 5 types of inheritance: -
1. Single inheritance
2. Multilevel inheritance
3. Multiple inheritance
4. Hierarchical inheritance
5. Hybrid inheritance

  Was this answer useful?  Yes

gowtham

  • Feb 28th, 2012
 

Creating a new classes from exiting classes
5 type

  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