Multiple Inheritance Is Supported In C#?
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.