Multiple choice Which of the following is FALSE regarding interfaces in C#? A class can inherit a base class and can also implement one or more interfaces. An interface cannot contain the definition of a method. An interface can inherit from one or more base interfaces. An interface cannot contain an event. Interface members are by default public. Reveal answer Fill a bubble to check yourself D Correct answer Explanation Interfaces can contain methods, properties, events, indexers or any combination of those four member types.