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 |
Name container classes in java programming?
What is qms certification?
Implement a stack with push (), pop() and min() in O(1) time.
Explain JMS in detail.
What is static method with example?
What does this () mean in constructor chaining concept?
Tell us something about different types of casting?
We can write any Java Logics in our JSP. Then why we are using servlets(Controller Layer) to interact with the DAO ?
What are Transient and Volatile Modifiers?
3 Answers SAP Labs, TUP Manila,
what is encapsulation in java? Explain
as we know a static method could access static data and static method only. then how could main method call the object of aclass which is not static and other non static data
What is quick sort in java?