Difference between multi-level and multiple inheritance?
Answer Posted / vipin rana
multiple inheritance: It is define that type of inheritence
in which more than one class can derived one derived class.
ie.
base1 base 2 base n
| | |
| | |
|_____________ derived _______|
multilevel inheritance: It is define that type of
inheritance in which one derived class can derived a new
class as well as well base class for new derived class is
refered to as intermidite base class..
ie. 1 base class
|
|
|
2 intermidiate base class
|
|
|
3 derived
or .. student
|
|
test
|
|
result
Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
What is generic in c#?
Why do we use interface in c#?
Are c# references the same as c++ references?
Is c sharp free?
Can a struct inherit from an interface in c#?
What is a dynamic assembly?
Write the difference between TypeOf and GetType?
Why main method is static in c#?
Explain how to parse a datetime string?
What exactly happens when we debug and build the program?
What is deferred execution?
What is dynamic object in c#?
Why is it important to override gethashcode when equals method is overridden?
Is a dll an assembly?
What is the file extension for c#?