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
What is STA in .NET?
What is interface and abstract class in .net?
Using com component in .net?
Using activex control in .net?
what is dotnet architecture? can anyone explain that.
How is .net able to support a lot of languages?
Explain about .Net products?
Explain security measures exist for .net remoting in system.runtime.remoting?
How to implement datagrid in.net? How would you make a combo-box appear in one column of a datagrid? What are the ways to show data grid inside a data grid for a master details type of tables? If we write any code for datagrid methods. What is the access specifier used for that methods in the code behind file and why?
Who is using .net core?
What is Event Bubbling in .NET?
What is the difference between a class and an object, and how do these terms relate to each other?
What should you do to store an object in a viewstate?
Explain difference between panel and groupbox classes using .net?
Please tell us what is the difference between override and overload in a method?