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
Why c# is called c sharp?
What is writeline?
What is private constructor c#?
What is data annotation in c#?
Is hashset ordered c#?
What do multicast delegates mean?
What is different about switch statements in c#?
what happens if you inherit multiple interfaces and they have conflicting method names?
What is parsing?
How many types of constructors are there in c#?
What is exe file in c#?
Describe the process of “exception handling implementation” in c#?
What is the difference between returning iqueryable vs ienumerable?
how to print invert pyramid in c#
Where test director stores its data ? Database ,Local file etc...? I need to read this data from Visual Studio 2005 c# client. Regards