Answer Posted / 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 View All Answers
How many ways can an argument be passed to a subroutine and explain them?
What technique is carried out to find out if a particular string is empty?
Give example to differentiate between call by value and call by reference.
What is the use of inner class?
What is Session reduplication and how its done?
What is the difference between object oriented programming language and object based programming language?
What is the biggest integer?
How many bytes is 255 characters?
What is assembly condition codes?
Difference between arraylist and vector.
Does java set allow duplicates?
Why can't we make a class private in java?
Is linkedlist thread safe in java?
Can an interface be defined inside a class?
What are selection structures?