Difference between multi-level and multiple inheritance?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
Explain the clr triggers?
What is immutable in C#?
0 Answers SwanSoft Technologies,
What is c sharp used for?
Can the nested class access, the containing class. Give an example?
What is static and use of it?
What benefit do you get from using a primary interop assembly (pia)?
What is the difference between C# 3.5 and C# 4.0?
What are logical operators in c#?
What is difference between private and protected?
How can I make sure my c# classes will interoperate with other .net languages?
What are the types of threading models ?
How you will create satellite assemblies?