InterviewSolution
Saved Bookmarks
| 1. |
Which component is responsible to optimize bytecode to machine code?(a) JVM(b) JDK(c) JIT(d) JRE |
|
Answer» The correct choice is (c) JIT The best I can explain: JIT optimizes bytecode to machine specific language code by compiling similar bytecodes at the same time. This reduces overall time taken for compilation of bytecode to machine specific language. |
|