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
Which is faster union or union all?
What are uri parameters?
What is inproc and outproc?
How you can add an event handler?
What is meant by asp.net?
How can we create Tree control in asp.net?
if i wanna deploy my asp.net project to the production server and situation is that i m still not compiled my project i have as-is on my development side now on production server we dont have a visual studio now what kind of settings i need to be to do in webconfig /machine.config file to deploy my project and in iis too....
What is the concept of postback in asp.net?
What does asp.net stand for?
What does ascx stand for?
What is viewstate information stored?
Why would a company use an application service provider?
Explain about consistent programming model in the .NET framework?
Explain the difference between an exe and a dll?
When was asp.net released?