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 do I convert a string to an int in c#?
How will you deploy the dll file in gac?
What is the default value of string in c#?
how to Create a datagridview control with check box column with 8rows in it, the maximum number of check boxes checked should be 3, when user checks the 4th corresponding message should be displayed and check box should be checked. User can uncheck the checked boxes Note: read-only property should not be used
Why reflection is used in c#?
Explain About web methods and its various attributes
Enlist all the components of an ado.net framework?
What is winforms c#?
What is a framework in c#?
What is a race condition?
What is a dll in c#?
Is versioning applicable to private assemblies?
What is use of list in c#?
Explain About multi level and multiple inheritance how to achieve in .net
What is the difference between System.console.WriteLine() and System.console.Write() function?example?