Multiple choice technology programming languages

static methods cannot be overridden to non-static methods.

  1. True

  2. False

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

In Java, static methods are associated with the class rather than instance objects and cannot be overridden. Attempting to override a static method with a non-static method in a subclass results in a compilation error.