Difference between multi-level and multiple inheritance?
Answer Posted / kautilya
Multiple Inheritance : we can inherit more than one class
in the same classe.
Multi-Level Inheritance: where onc class can inherit only
one base class and the derived class can become base class
of some othere class.
| Is This Answer Correct ? | 250 Yes | 35 No |
Post New Answer View All Answers
Explain the difference between // comments, /* */ comments and /// comments?
Why delegates are type safe in c#?
What is session c#?
What is lock in c#?
If I return out of a try/finally in c#, does the code in the finally-clause run?
Differentiate between object pooling and connection pooling in c#?
Does c# support multiple class inheritance?
How can you write a class to restrict that only one object of this class can be created (Singleton class)?
What are the uses of namespaces?
How can encapsulation be achieved?
How many types of interface are there in c#?
What is the difference between constants and read-only?
What are the properties of a string class?
Write the difference between TypeOf and GetType?
What are instance fields in c#?