Why do we need main method to execute a java program?
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 |
How to compare strings in java?
how to connect two diffrent applet files
I have multiple constructors defined in a class. Is it possible to call a constructor from another constructor’s body?
What are the benefits of java?
Define interface?
Is 64bit faster than 32 bit?
Why wait and notify methods are declared in object class?
What is string and its types?
What does 0 mean in boolean?
What is variable length arguments in java?
Explain how can you debug the Java code?
What is backdrop?