Multiple choice technology programming languages

Can you inherit multiple interfaces?

  1. True

  2. False

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

In C#, a class can implement multiple interfaces simultaneously, which enables achieving a form of multiple inheritance (implementation inheritance). This is different from extending multiple classes, which C# does not support. Interfaces provide contracts that a class must fulfill.