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
What is the default value of boolean variable?
Define delegate in c#?
What is the best dependency injection c#?
How do I convert a string to an int in c#?
How to move to a state-related codebase?
What are extensions in c#?
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; } }
What does int32 mean in c#?
What is COM Interoperability?
Define an escape sequence, name few strings in escape sequence?
Are all methods virtual in c#?
Do loops c#?
What is task parallel library?
What is an assembly qualified name? Is it a filename? How is it different?
What is a delegate? Explain.