1.

What is JIT?

Answer»

JIT is abbreviated as Just In Time. It acts as a compiler that helps in converting the Intermediate Language to a Native code. The code is generally available in Native language during the execution STEP. Native code is actually nothing special but the hardware specifications that can be easily understood by the CPU.

The native code EVEN is stored so that it is accessible for subsequent calls by the end-users.

In short, it CONVERTS the MSIL code within an assembly to native code that can be understood by the CPU architecture of the target machine to run a .NET application.. It also cross-checks the values that are passed to parameters of any method.

It helps in managing the execution of .NET programs regardless of any TYPE of .NET programming language. The first step is a language-specific compiler converting the source code to the intermediate language. Then the intermediate language is TRANSFORMED into the machine code by the JIT compiler.



Discussion

No Comment Found