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
How many types of collections are there in c#?
What is ilasm.exe used for?
Can you use foreach iteration on arrays in c#?
Explain About Virtual functions and their use.
How do you escape in c#?
What does args mean in c#?
Explain how to parse a datetime string?
How do I develop c# apps?
In dynamic link library, which api is used for load library?
Do loops c#?
i want o/p 011242110 in c# code.
Why do we need reflection in c#?
What is bitwise operator in c#?
Can bool be null c#?
Are tuples mutable c#?