Which component is responsible to optimize bytecode to machine code?
Answers
Answered by
0
the component JVM(java virtual machine)is responsible to optimize bytecode to machine code
Answered by
0
The “Just In Time” (JIT) compiler of Java is used to optimize the byte code to machine language code by compiling it.
Explanation:
The java compiler used to compile source code to byte code. During the run time, the byte code is converted using JIT to machine-specific language. During bytecode to machine-specific language conversion, JIT starts compiling similar codes at the same time to achieve better optimization of the process.
Similar questions