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


Please Help Members By Posting Answers For Below Questions

What's the use of formatters in .net?

575


What are client activated objects and server activated objects?

517


Explain code snippet to register exception filters from controller?

630


What does ascx stand for?

511


In order to bind the data from a data source to the Repeater control what property is set and what method must you call in your code,?

597






List the asp.net validation controls?

527


Which class is used to send an email message from an ASP.NET Web page?

547


Where would you use an ihttpmodule, and what are the limitations if any?

528


List the major built-in objects in asp.net?

549


Can we make activex dll also ti execute in some process as that of client ? How can we do?

4251


How to implement Authentication and Authorization?

567


Can you explain architecture of your project ?

616


How do you design a website with multilingual support in ASP.NET ?

545


What is loop in asp.net?

586


Define what is razor? : asp.net mvc

580