What is JIT ?

Answer Posted / umaira fathima

Since JRE version 1.2, Sun's JVM implementation has
included a JIT (just in time) compiler. Unlike the previous
interpreter that interpreted bytecode one instruction at a
time, the JIT compiler converts the bytecode for a program
into equivalent native machine code as the program is
loaded into the virtual machine.
This results in faster execution

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Outline the major features of java.

561


Can a static class implement an interface?

545


What are the major advantages of internal iteration over external iteration?

566


Why does the integer quotient -0/3 yield 0, but the double quotient -0.0/3.0 yields – 0.0?

601


What is math in java?

560






What do you mean by pointer value and address?

571


What is xslt in java?

512


How to display names of all components in a Container?

2482


What is class variable java?

581


Are functions objects in java?

537


What is difference between final and finally in java?

580


Can we execute a program without main?

531


What is lossy conversion in java?

553


What is string data type?

547


Class c implements interface I containing method m1 and m2 declarations. Class c has provided implementation for method m2. Can I create an object of class c?

1012