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

How many types of Stored Procedures in SQL Server

4 Answers   Mind Tree,


What is the difference between Hash table and Array list?

0 Answers  


In a page there is dropdown list with the name of the cities like Bangalore,Pune,Chennai,Other and a text box that would enable the user to enter the name of the city if other is selected. How to enable validation on the text box if other is selected

1 Answers  


What is actually returned from server to the browser when a browser requests an .aspx file and the file is displayed?

0 Answers   MindCracker,


IN an ASP.NET Web application if there is any error, how can you debug?

0 Answers   Siebel,






What is difference b/w Generic List and Arraylist, Generic List Vs HashTable, Generic List Vs No Generic? Pls Explain with example.

2 Answers   Polaris, Syntel,


How can we use Web API with ASP.NET Web Form?

0 Answers  


Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?

0 Answers  


what is publisher?

0 Answers   Microsoft,


What are different transaction options?

2 Answers   Astadia,


Write a code for sending an email from asp.net application.

0 Answers  


what is assembly?

4 Answers   Microsoft,


Categories