Multiple choice technology programming languages

main method can be overridden.. True/False

  1. True

  2. False

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

The main() method can be overloaded (different signatures) but the standard String[] variant from Object cannot be overridden because it's static. Static methods belong to the class definition, not instances - no virtual method table lookup.