What is JIT ?

Answers were Sorted based on User's Feedback



What is JIT ?..

Answer / 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

What is JIT ?..

Answer / xxx

Just In Time

Is This Answer Correct ?    3 Yes 1 No

What is JIT ?..

Answer / tushar

JIT(just in time)compiler for the Java language allows
interpreted Java programs to be automatically compiled into
native machine language on the fly, for faster performance
of the program. Some JVMs include a JIT compiler.

Is This Answer Correct ?    2 Yes 0 No

What is JIT ?..

Answer / rinky

Just in time(JIT) is a fast compiler.
Remember that when client system sends a request to server system,then the response is sent in two ways
1)static response(google page) using html
2)Dynamic response(ex:cricket score update information)using Applets
To send user(client system)response in the form of Webpage,applets program (in the form of bytecode) transferred from server to client system over the internet and executed using JIT(i.e converts bytecode to native code)
A webpage may contain number of applet programs to give different reponses(updated news,cricket score....)then to execute each program using JVM is time taking process.so,JIT is used to compile all applet programs at once to reduce response time.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Core Java Interview Questions

Which is the class in java?

0 Answers  


What are the fileinputstream and fileoutputstream?

0 Answers  


What is the instance of an object?

0 Answers  


how to open and edit XML file in Weblogic???

0 Answers   Symphony,


This is my code i have a doubt class ab implements a,b { public void add() { System.out.println("Hi") } } interface a { public void add(); } interface b { public void add(); } in this code i have two interface implemented in the class has same method.just i want to know which method of interface implemented in the class. interface a or interface b? confused me .

3 Answers  






How can we get one Interface methods whit out using implementation of interface

1 Answers   Oracle,


What is Java Shutdown Hook?

0 Answers  


Why chararray() is preferred over string to store the password?

0 Answers  


What are checked exceptions?

0 Answers  


What is the use of singleton class?

0 Answers  


Why singleton pattern is better than creating singleton class with static instance?

0 Answers  


how can be object class inherited to all class in a program when java does not support multiple inheritance??

4 Answers  


Categories