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
explain Garbage collector’s functionality on unmanaged code
What are functions c#?
if we are updating a database using thread, and mean while application crashes or thread being aborted then what will happen in Database? Rollback or Database will be updated? Please explain with different scenario.
Where do we set the min and max pool size for connection pooling?
What are the different types of delegates?
What are the characteristics of c#?
What is the difference between null and string empty in c#?
What are methods in C#?
When a switch is said to be congested?
What is difference between the "throw" and "throw ex" in .net?
Explain about Serialize and MarshalByRef?
What is jagged array in c#?
Can dictionary have duplicate keys c#?
Illustrate the differences between the system.array.copyto() and system.array.clone()?
What is the implicit name of the parameter that gets passed into the set method/property of a class?