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 the difference between disposing of () and finalize() methods in c#?
What is the delegate in c#?
What are the different types of assemblies available and their purpose?
what is be the overhead, if i use binary transmission. and will it be sent using xml text or how ?
Explain the term inheritance in C#.
How to sign an assembly with strong name?
What are virtual classes in c#?
When To use HashTable In C#
What's the difference between the debug class and trace class? Documentation looks the same.
What is escape character in c#?
What does mean c#?
What are the 2 broad classifications of data types available in c#?
What is verbatim literal in c#?
What is string [] args in c#?
Is as operator in c#?