Answer Posted / ankita
PRE-JIT: Pre-JIT compiles source code into native code in a
single compilation cycle.
ECONO-JIT: It 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 called again, the compiled code from
cache is used for execution.
| Is This Answer Correct ? | 36 Yes | 3 No |
Post New Answer View All Answers
How many namespaces are in .net version 1.1?
Is .net core free?
What are multicast delegates?
Can a dll be changed to an exe?
What is a .DLL and .EXE files called in .NET?
Explain what is the difference between a class and an object, and how do these terms relate to each other?
What is the difference between a debug and release build?
What is garbage collection and how it works. Provide a code example of how you can enforce garbage collection in .net?
Explain what is reflection in microsoft .net context?
What is the reason of occurring overflow-underflow arithmetic exception error, it shows error message when we run our program by adding control?
What is a manifest in .net?
Explain the difference between the stack and the heap?
Please explain what garbage collection is and how it works. Provide a code example of how you can enforce garbage collection in .net?
What are the different types of memory in .net?
Explain attributes in dot net?