What is JIT, what are types of JITS and their purpose ?

Answers were Sorted based on User's Feedback



What is JIT, what are types of JITS and their purpose ?..

Answer / 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

What is JIT, what are types of JITS and their purpose ?..

Answer / 03/05/2007

JIT is Just in Time compiler which compiles the MSIL into
NAtive code. there are 2 types of JITS.

Is This Answer Correct ?    18 Yes 6 No

What is JIT, what are types of JITS and their purpose ?..

Answer / kalpana reddy m

JIT :Just In Time
It converts MSIL code into Native code

It can be devided in 2 types

1.STANDARD JIT

2.ECONAMIC JIT

Is This Answer Correct ?    4 Yes 13 No

Post New Answer

More ASP.NET Interview Questions

What is strong name and which tool is used for this ?

3 Answers   Patni,


What is a runtime version?

0 Answers  


Why does my asp.net file have multiple tag with runat=server?

0 Answers  


What is redirectpermanent in asp.net?

0 Answers  


How do u declare static variable and how it is declared and what is its lifetime?

0 Answers  






what are partial postbacks?

2 Answers   Infosys, Microsoft,


what is wpf and wcf in .net explain with an example?

2 Answers  


What is a 404 redirect?

0 Answers  


What is an asp.net validator? And, mention its types.

0 Answers  


What are the asp.net list controls and difference between them?

0 Answers  


What are the different types of Session state management options available with ASP.NET?

1 Answers  


what are Httpmodule and HttpHandler?

3 Answers   Microsoft, Wipro,


Categories