Multiple choice technology programming languages Which of the following is not a C# keyword? a. if b. implements c. private 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#.