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
How to use exception handling in stored procedure?
What is data type in c# with example?
What is “using” statement in c#?
What are native functions?
Is string nullable in c#?
What is mvc pattern in c#?
Why is main static in c#?
How can you write a class to restrict that only one object of this class can be created (Singleton class)?
What are value types in c#?
What is object pool in .net?
What is a race condition?
Can we extend sealed class in c#?
What is a Command Object in C#?
Explain the types of Polymorphism.
Which of these statements correctly declares a two-dimensional array in c#?