Difference between multi-level and multiple inheritance?

Answer Posted / aruna

In C#:
interface is supporting multiple inheritence
class is supporting multi level inheritence.

Is This Answer Correct ?    10 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is string a data type in c#?

489


What namespace is list in c#?

488


What is void in c#?

526


List the fundamental oop concepts?

514


What is a singleton unity?

552






How does dll hell solve in .net?

482


What is ildasm and obfuscator in net?

540


Can c# inherit multiple classes?

506


What is int16?

505


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; } }

3307


When should we use sealed class in c#?

488


What is the difference between abstraction and encapsulation in c#?

492


Will the following code compile and run?

550


What is data type in c# with example?

521


What is difference between singleton and static class in c#?

472