Question 152. What Is Jit? What Are The Different Types Of Jit?
JIT stands for Just-in-time compiler.It is a part of the runtime execution environment. It compiles the intermediate language and execute them. There are three types of JIT. They are, 1. Pre-JIT : compiles complete source code into native code in a single compilation cycle. This is done by at the time of deployment of the application. 2. Econo-JIT : compiles only those methods that they are called at runtime. However, These compiled methods are removed when they are not required.