Beginner Java
Q15 / 100

What does the static keyword mean on a method?

Correct! Well done.

Incorrect.

The correct answer is B) The method belongs to the class, not to any instance

B

Correct Answer

The method belongs to the class, not to any instance

Explanation

Static methods belong to the class itself and can be called without creating an instance, e.g., Math.sqrt().

Progress
15/100