Computer Science, asked by annielal, 1 year ago

define java compilation process in brief

Answers

Answered by msndipapal
16

In the Java Compilation Process the *.java file is converted to *.class file by the JVM (Java Virtual Machine) which is independent of all platforms and the JIT(Just In Time) Compiler which is a component of the JVM is used to execute the *.class file on any platform .  In this type of compilation the source code(*.java) is not converted to Native Executable Code for that platform but to the byte code(*.class)

Answered by Hacket
10
In the java compilation process .java file converted into .class file and then it is executed by jvm
Similar questions