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
Can I extend singleton class in java?
What are the uses of java?
What does snprintf return?
What does split function do in java?
What is a qualifier in a sentence?
What is the largest long allowed by java?
What do you understand by access specifiers in Java?
If I don't provide any arguments on the command line, then what will the value stored in the string array passed into the main() method, empty or null?
What is the relationship between class and object?
What do you mean by ordered and sorted in collections in java?
How to solve the problem of generating the unique hash keys with hash function?
Explain the public class modifier?
What is an empty list in java?
If a method is declared as protected, where may the method be accessed?
Can a final variable be initialized in constructor?