What do you understand by java virtual machine? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What do you understand by java virtual machine?

6th Feb 2020, 8:30 AM
Irfan Ludvi Astanto
Irfan Ludvi Astanto - avatar
2 Answers
+ 3
JVM is a virtual system unlike the physical system you have. It is responsible for converting the java bytecode to machine code that can be understood by the system. JVM itself is not a compiler but it has a Just In Time (JIT) compiler which converts a big block of bytecode to machine code. The JIT compiler makes the language faster because a method which already has been interpreted is converted to a native code and every time that method is called in the program, that native code is executed directly.
6th Feb 2020, 8:43 AM
Avinesh
Avinesh - avatar
+ 2
The thing that translates and executes the bytecode that the compiler previously generated from your source code.
6th Feb 2020, 10:19 AM
Sonic
Sonic - avatar