Saved Bookmarks
| 1. |
Write a method Met that prints the numbers from 1 to 10.Only write the method - assume that the Main class & main method have been defined.Print the numbers on a single line, separated by a space character. At the end of the line, print a new line. |
|
Answer» Answer: The purpose of main METHOD in JAVA is to be program execution start point. When you run java.exe , then there are a couple of Java Native Interface (JNI) CALLS. These calls LOAD the DLL that is REALLY the JVM (that's right – java.exe is NOT the JVM). Explanation: |
|