What is JIT(Just In Time) and How it works?
Answer Posted / megha
JIT is a program which compiles MSIL to machine code,
without this .net has no path to machine code.
Types:
Standard JIT: It produces highly optimized machine code and
it caches the code in case it need to access
again.Compilation of IL to native code is very slow however
it produces native code very fast. To make it fast machine
use lot of Ram.
Econo JIT:This is designed for small system which donot
have lot of RAM.But it Produces the code which is not
optimal and also it donot cache the code.
| Is This Answer Correct ? | 10 Yes | 10 No |
Post New Answer View All Answers
What are the shadow variables?
How to achieve Polymorphism in VB.Net?
What is the role of new keyword?
What are the difference between structure and class?
what is commom language runtime?
Name the two main parts of .net?
What is sealed class?
Name the class which allows an element to be accessed using unique key?
What is meant by jagged arrays?
Explain the difference between thread and process?
What is the main purpose of garbage collector?
What is the maximum size of the textbox?
What are all the parts of .net framework?
What is non_deterministic finalization?
Explain how the .net framework performs automatic memory management.