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

asp.net interview questions

0 Answers  


How would you get asp.net running in apache web servers? Explain it's limitations.

0 Answers  


Using Statement usage in C#

2 Answers  


What is Virtual path in ASP.Net

2 Answers   Proteans,


What is difference cookie and session?

0 Answers  






What is web application virtual directory ?

2 Answers   Satyam,


What is CSS? What is the advantage os using CSS in ASP.NET Web Applications?

2 Answers   PCS,


Hi, I am a fresher. i have a problem related to DataGrid . i have a data grid and i have to place a dropdown in the datagrid.and i have to retrieve the values from the database (sqlserver).please tell me any idea about the code.

1 Answers   Lambent,


How long should a session id be?

0 Answers  


Explain exception filters?

0 Answers  


What is a server cookie?

0 Answers  


What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?

3 Answers   Satyam,


Categories