What is JIT, what are types of JITS and their purpose ?
Answer Posted / santosh
There are three types of JIT copilers.
Pre-JIT. Pre-JIT compiles complete source code into native
code in a single compilation
cycle. This is done at the time of deployment of the
application.
Econo-JIT. Econo-JIT compiles only those methods that are
called at runtime.
However, these compiled methods are removed when they are
not required.
Normal-JIT. Normal-JIT compiles only those methods that are
called at runtime.
These methods are compiled the first time they are called,
and then they are stored in
cache. When the same methods are called again, the compiled
code from cache is
used for execution.
| Is This Answer Correct ? | 35 Yes | 3 No |
Post New Answer View All Answers
Explain ViewState?
How long do session variables last?
How to store checkbox value in database in asp.net mvc? : Asp.Net MVC
What is a page life cycle?
What is a web server? What are the load limits in it?
Explain what is an abstract class?
What are the steps to follow to host a web application on a web server?
What is the difference between trace and debug in asp.net?
In which event of page cycle is the viewstate available?
Explain the concept of MVC Scaffolding?
Why should i prefer JSP over asp.net or any other web development language..??
What is a master page and what does it do?
How can we create Tree control in asp.net?
What is the difference between runtime version and version?
What is routing in MVC?