Multiple choice technology programming languages

Which of the following is not a C# keyword?

  1. a. if

  2. b. implements

  3. c. private

  4. d. delegates

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

'implements' is not a C# keyword - it's a keyword in Java. In C#, interface implementation uses a colon (:) syntax: class MyClass : IMyInterface. The word 'implements' simply doesn't exist in C#.