0
what is JVM ?
3 Respuestas
+ 2
Java virtual machine (JVM) is an abstract computing machine that enables a computer to run a Java program.
0
java compiler compiles .java file to .class file. A .class file does not contain code that is native to your processor, it instead contains bytecodes. Through java virtual machine we are capable to run on different platforms like windows, Mac os, Linux ..
0
thanks