what is meaning of JIT?

Answers were Sorted based on User's Feedback



what is meaning of JIT?..

Answer / mrangababu

JIT :(Just In Time compiler) Execution engine of JVM
contains both Interpreter and JIT compiler both are
combindely used for converting byte code to machine
language instruction ..

Is This Answer Correct ?    8 Yes 0 No

what is meaning of JIT?..

Answer / anil

Just In Time

Is This Answer Correct ?    7 Yes 3 No

what is meaning of JIT?..

Answer / rushabh doshi gujarat vidyapi

Just In Time compiler
JVM
contains both Interpreter and JIT compiler both are
combindely used for converting byte code to machine
language instruction
Overview
Java(tm) is one of the most dominant programming languages,
and used for a wide range of applications including games
and pervasive devices and mission-critical e-business
applications. A Java program is compiled into an
intermediate language called bytecodes, and it can be
downloaded through the network and executed on any
computers that have Java execution environment. However,
the overhead for interpreting bytecodes is a serious
bottleneck.

We have been researching and developing various techniques
for the Java Just-In-Time Compiler, which allows much
faster execution by compiling bytecodes into native machine
code on the fly. Our JIT compiler is used on almost all
Java platforms of IBM, ranging from network computers (NC)
to mainframes.

Is This Answer Correct ?    2 Yes 0 No

what is meaning of JIT?..

Answer / angel

JIT means just-in-time which is also known as dynamic
translation.A jit is a code generator that converts java
bytecode into native machine code.A jit compiler can be used
as a way to speed up execution of bytecode.

Is This Answer Correct ?    3 Yes 2 No

Post New Answer

More Core Java Interview Questions

What is the list interface in java programming?

0 Answers  


What are the various access specifiers in java?

0 Answers  


what is synchronization? : Java thread

0 Answers  


Can we call a non-static method from inside a static method?

0 Answers  


There are 2 classes, 1 LandAnimal and another WaterAnimal. There is another class Animal which wants to have the properties of both LandAnimal and WaterAnimal. How will you design this situation?

6 Answers   KPIT,






What is the difference between a break statement and a continue statement?

0 Answers  


What is indexof?

0 Answers  


there are some duplicate values in ArrayList, how U'll get that array with out duplicate?

4 Answers   CMC,


What is the difference between constructor and method?

4 Answers  


How do you write a conditional statement?

0 Answers  


What is the basic difference between string and stringbuffer object?

0 Answers  


what is the Yield() method used in threads?

4 Answers   Accenture,


Categories