Home »
MCQs »
C# MCQs
Which keyword is used to declare an interface in C#?
84. Which keyword is used to declare an interface in C#?
- interface
- Interface
- implement
- Implement
Answer: A) interface
Explanation:
In C#, an interface can be declared using the interface keyword. An interface can contain declarations of methods, properties, indexers, and events.