Difference between multi-level and multiple inheritance?
Answer Posted / anand
Multiple Inheritance:
One derived class can have more than one base class
Multilevel Inheritance:
One child class is derived from a base class which was derived from another base class.
Ex:
Multiple:
Class A Class B Class C
\ | /
\ | /
\ | /
-----------------------------
|
|
Class D [Derived class having mor e than one base class]
Multilevel:
Class A
|
|
|
Class B
|
|
|
Class C
| Is This Answer Correct ? | 91 Yes | 9 No |
Post New Answer View All Answers
What is literal control
What is difference between array and list?
what is the meaning of Object lifetime in OOPS
What are the different types of assembly?
How many digits are in an integer?
What is a partial class. Give an example?
What are c# i/o classes?
What is a struct in C#?
What are the types of comments in c#?
What is dependency injection in simple words?
What is difference between variable and property in c#?
Can constructor be private c#?
What do you mean by winforms in c#?
What is difference between float and integer?
What is a multicast c# delegate?