Computer Science, asked by Tania002, 10 months ago

what is the use of JVM

Answers

Answered by mahendra81
1

The Java Virtual Machine (JVM) is the virtual machine that runs the Java bytecodes. The JVM doesn't understand Java source code; that's why you need compile your *.java files to obtain *.class files that contain the bytecodes understood by the JVM. It's also the entity that allows Java to be a "portable language" (write once, run anywhere). Indeed, there are specific implementations of the JVM for different systems (Windows, Linux, macOS, see the Wikipedia list), the aim is that with the same bytecodes they all give the same results.


Tania002: Thank you
Answered by botanyliker
0

Explanation:

Machine that enables a computer to run Java program as well as the program written in other languages


Tania002: Thank you
botanyliker: u welcome
Similar questions