Difference between multi-level and multiple inheritance?

Answers were Sorted based on User's Feedback



Difference between multi-level and multiple inheritance?..

Answer / kautilya

Multiple Inheritence : while a class has inheritted more
than one classes then it is called multiple inheritance.

Multi-Level Inheritence : where a class can inherit only
one class. while a class has inherited a class and it is
being inherited by other class, this hierarchy is being
called as Multi-Level Inheritence.

Is This Answer Correct ?    16 Yes 1 No

Difference between multi-level and multiple inheritance?..

Answer / hafiz usman majeed

multiple inheritence means that a class is inherited from
more than one class. whereas multi-level inheritence means
that a class is inherited at more than one level that is it
can be inherited internally and/or protectedly.

Is This Answer Correct ?    15 Yes 1 No

Difference between multi-level and multiple inheritance?..

Answer / rajesh kumar k

Multiple inheritance :
More than one Base Class used in Derived Class
Example:
Class A (Base Class)
Class B (Base Class)
Class C (Base Class)

Class D (Derived Class)
Inherit Class A , Class B, Class C
----------------------------------------------------------
Multilevel Inheritance :
Base Class Used Derived Class The Same again we are using as
Base Class
Example :

Class A (Base)
Class B Inherit Class A (Derived Class for Class A
And Base Class for Class C)
Class C Inherit Class B

Is This Answer Correct ?    12 Yes 0 No

Difference between multi-level and multiple inheritance?..

Answer / jyothish vakkom

multiple: x x x (base)
x (sub)



multilevel: x (base)
x (intermedit)
x (sub)

Is This Answer Correct ?    12 Yes 1 No

Post New Answer

More C Sharp Interview Questions

Explain the clr triggers?

0 Answers  


What is immutable in C#?

0 Answers   SwanSoft Technologies,


What is c sharp used for?

0 Answers  


Can the nested class access, the containing class. Give an example?

0 Answers  


What is static and use of it?

0 Answers  






What benefit do you get from using a primary interop assembly (pia)?

0 Answers  


What is the difference between C# 3.5 and C# 4.0?

0 Answers  


What are logical operators in c#?

0 Answers  


What is difference between private and protected?

0 Answers  


How can I make sure my c# classes will interoperate with other .net languages?

0 Answers  


What are the types of threading models ?

4 Answers   Digital GlobalSoft,


How you will create satellite assemblies?

0 Answers  


Categories