how to execute main()
Answers were Sorted based on User's Feedback
Answer / suresh royal
main() method is the JVM known method so jvm
will start the exicution from main method ,that main() method is static so no need to call
| Is This Answer Correct ? | 16 Yes | 0 No |
Answer / sadikhasan palsaniya
main method is executed by JVM. User cant execute it.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / atul
main() is execute by the jvm.if class have main()method &
class loader is load class in method area.
then Jvm call main() method;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / karthika
By using object creation,we can execute main method.
| Is This Answer Correct ? | 1 Yes | 7 No |
Do we need to manually write Copy Constructor?
What is an interoperable application in java ?
Explain the different forms of polymorphism?
what is the volatile modifier for? : Java thread
What are new features introduced with java 8 ?
Why collection is called framework in java?
What is scope & storage allocation of global and extern variables? Explain with an example
what is meant wrapper classes?
What are the basics of core java?
What is method in java ?
Write java code to print "Hello how are you" Thread1 should have "Hello" Thread2 should have "how are you" both the threads should start at the same time
in a console we r giving java <class name> if r pressing enter where it'll goes