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 are value types and reference types?
What is an arraylist in c#?
What is difference between ilist and list?
What does exclamation mark mean c#?
Are c# constructors the same as c++ constructors?
What is a Command Object in C#?
Why dependency injection is used in c#?
What is the and operator in c#?
Is string null or empty?
What is the max value of int32 in c#?
What is jit (just in time)?
How do you pass reference parameters in c#?
What is instantiating a class?
What is string empty?
Why is xml called extensible?