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
Is string passed by reference in c#?
What is data types in c#?
Are c# constructors the same as c++ constructors?
Does c# support templates?
What is the lock statement in c#?
What does return do in unity?
What is a sealed class?
Why dependency injection is used in c#?
What is sorting in c#?
What is a data set in c#?
Why do we need dependency injection in c#?
Does c# support parameterized properties?
Do vs while c#?
Is list passed by reference c#?
How do you declare a method in c#?