Multiple choice technology web technology

Which one of the following keywords causes a compile time error if used in a static method?

  1. this

  2. using

  3. lock

  4. continue

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

The keyword 'this' refers to the current instance of an object. Because static methods belong to the class rather than any specific instance, 'this' cannot be used inside a static method and causes a compile time error.