🎴 Flashcard Mode

C# Programming Fundamentals Quiz

Card1 / 15
Mastered0
Review0
QuestionClick to flip

Which of the following is not a C# keyword?

AnswerClick to flip back
A
implements
💡 Explanation:

'implements' is a Java keyword, not C#. C# uses a colon for interface implementation (class MyClass : IInterface) rather than an 'implements' keyword. The other options are all valid C# keywords.

Change Mode