Multiple choice technology programming languages

main method can be overloaded

  1. True

  2. False

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

The main method CAN be overloaded - you can have multiple methods named 'main' with different parameter lists. However, only the standard main(String[] args) serves as the JVM entry point. Other overloaded main methods must be called explicitly like any other method. This is a common confusion point.