Multiple choice technology programming languages

Multiple Inheritance Is Supported In C#?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

C# does not support multiple inheritance with classes - a class can only inherit from one base class. However, C# does support multiple inheritance through interfaces (a class can implement multiple interfaces). The statement refers to class inheritance, which is not supported.