🎴 Flashcard Mode
programming languages Online Quiz - 24
Card1 / 20
Mastered0
Review0
QuestionClick to flip
Can you inherit multiple interfaces?
AnswerClick to flip back
A
True
💡 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.