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
If you want to write your own dot net language, what steps you will u take care?
Why are mutable structs evil?
Explain how is the dll hell problem solved in .net?
What is a shared assembly?
Explain publishers and subscribers in events.
What is double c#?
Explain the types of errors in c#?
Is c# substring zero based?
Explain deadlock?
Can we declare class as protected?
What is Named parameter in C#?
What is a hash table in c#?
How do you declare a variable in c#?
What is the solution if you need to manipulate sets of items?
Distinguish between continue and break statement?