Multiple choice technology programming languages

main() method is declared as a static method so that it can be invoked without having to create an instance of the corresponding class.

  1. True

  2. False

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

The main() method must be declared static so the JVM can call it without instantiating the class. This is a fundamental Java requirement - the JVM needs an entry point it can invoke using the class name directly, without needing to create an object first.