Difference between multi-level and multiple inheritance?
Answer Posted / rizwan iqbal
In multiple inheritance there is a more than one parent class and one child class..
eg:
parent class
parent class
child class
Multilevel:
In Multilevel inheritance there is a more than one child classes and only one base class
eg:
base class
child class
child class.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the types of inheritance in c#?
What is difference between class and abstract class in c#?
What is the difference between values and reference types?
Can the accessibility of a type member be greater than the accessibility of its containing type?
What is trim in c#?
How many destructors can a class have?
What is IL / CIL / MSIL?
What is the difference between “constant” and “readonly” variables in c#?
Can a constructor have a return type?
State whether it is true to test a Web service you must create a windows application or Web application to consume this service or not?
Which is the best language for desktop application?
code for arranging given number in possible permutation ways ex:123,321,312,132,231,213.
What is CLR and its application.?
Describe the ways of cleaning up objects in c#.
Are arrays value types or reference types?