Explain About JVM?
https://www.computersprofessor.com/2016/05/explain-about-jvm.html
All language compilers translate
source code into machine code for a specific computer.
|
||
Java
complier also does the same thing.
|
||
Java
complier produces an intermediate code thrown as byte code for a machine that
does not exist.
|
||
This
machine is called the java virtual machine and it exists only inside the
computer memory.
|