InterviewSolution
Saved Bookmarks
| 1. |
Explain Java Virtual Machine or JVM. |
|
Answer» A VIRTUAL machine that ALLOWS a computer to run a Java programme is known as a Java Virtual Machine. The JVM functions as a run-time engine that calls the main method in Java programming. The Java Virtual Machine (JVM) is a SPECIFICATION that MUST be implemented in a computer system. JVM compiles Java code into BYTECODE, which is machine agnostic and similar to native code. The image below shows the architecture of JVM: |
|