Difference between multi-level and multiple inheritance?

Answer Posted / #imadude

Multiple inheritance.
- when a class is derived from two base classes.


Multilevel inheritance.
- When one derived class is working as the base class of another.


~peaceout~

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the default value of boolean variable?

701


Define delegate in c#?

734


What is the best dependency injection c#?

685


How do I convert a string to an int in c#?

740


How to move to a state-related codebase?

1207


What are extensions in c#?

757


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

3875


What does int32 mean in c#?

681


What is COM Interoperability?

773


Define an escape sequence, name few strings in escape sequence?

745


Are all methods virtual in c#?

750


Do loops c#?

709


What is task parallel library?

755


What is an assembly qualified name? Is it a filename? How is it different?

728


What is a delegate? Explain.

735