Why do we need main method to execute a java program?



Why do we need main method to execute a java program?..

Answer / javamasque

Main method is auto called by JVM. It is the place, where JVM enters into the class. It is called before the class is instantiated by its constructor. There are below reasons on its signature.
1. Public access modifier: it is visible to outer environment called JVM.
2. Static non-access modifier: it is called before the class is instantiated, hence JVM use class name to call the main method.
3. Void return type: It return no value to JVM.
4. String array parameter: It takes command line arguments.

Is This Answer Correct ?    11 Yes 1 No

Post New Answer

More Core Java Interview Questions

How to compare strings in java?

0 Answers  


how to connect two diffrent applet files

0 Answers  


I have multiple constructors defined in a class. Is it possible to call a constructor from another constructor’s body?

0 Answers  


What are the benefits of java?

0 Answers  


Define interface?

3 Answers   MindCracker,


Is 64bit faster than 32 bit?

0 Answers  


Why wait and notify methods are declared in object class?

0 Answers  


What is string and its types?

0 Answers  


What does 0 mean in boolean?

0 Answers  


What is variable length arguments in java?

0 Answers  


Explain how can you debug the Java code?

0 Answers   BirlaSoft,


What is backdrop?

0 Answers   Atos Origin,


Categories