Multiple choice technology programming languages

Can u overload main()method?

  1. True

  2. False

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

Java allows method overloading, so you can have multiple main() methods with different parameter signatures. However, only public static void main(String[] args) serves as the JVM entry point.