Difference between multi-level and multiple inheritance?
Answer Posted / abilash aravindan
Multiple inheritance:
In this , we can inherit more than one class..
Base Class
^
/ \
c1 c2
MultiLevel Inheritance:
In this, One class can inherit, one derived class and tat
derived class will be act as a base class for another
derived class...
c1(base class for c2)
|
(base class for c3)c2(derived class of c1)
|
c3(derived class of c2)
Hope now you can understand better..
| Is This Answer Correct ? | 29 Yes | 38 No |
Post New Answer View All Answers
What is dictionary class in c#?
What is scaffolding in c#?
What is xslt in c#?
What is a console file?
What is managed code?
What is difference between variable and property in c#?
What is verbatim literal in c#?
Are tuples mutable c#?
Why do we need singleton class in c#?
What is sqladapter c#?
Can a struct inherit from another struct or class in c#?
Can struct have constructor c#?
How do I enforce const correctness in c#?
Explain the difference between boxing and unboxing.
What is a virtual property. Give an example?