Answer Posted / vinod kumar kushawaha
JIT compiler is a part of the runtime execution environment.
In Microsoft .NET there are three types of JIT compilers.
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 thar are
called at runti
| Is This Answer Correct ? | 5 Yes | 9 No |
Post New Answer View All Answers
how can you tell ef to have a different table or column name than that defined for the class?
what is code first approach?
What type of filter does outputcacheattribute class represents?
What is .net architecture?
What are the 2 popular asp.net mvc view engines?
What is stateless model?
What is an asynchronous controller in asp.net mvc?
what is deferred loading(lazy loading)?
Explain the difference between viewbag and viewdata in mvc?
What are the options can be configured in AJAX helpers?
Why to use “{resource}.axd/{*pathinfo}” in routing in mvc?
what is use of entitydatasource control?
What are ajax helpers in mvc?
What is controllercontext?
What is the meaning of unobtrusive javascript? Explain us by any practical example.