Answer Posted / kalyankrishna
Pre-JIT : Per-JIT compiler compiles source code into native
code in a single compilation cycle. Pre-JIT sits at the
stage of deployment of the application.
Ecno -JIT:
Econo-JIT compiles methods that are called at runtime.
However, these compiled methods are discarded when they’re
not required.
Normal JIT:
Normal JIT only compiles the methods which are called at
runtime.
These methods are compiled the first time they’re called and
then they’re stored in cache. When the same methods are
called again, the compilation code from cache is used for
execution.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is an interface and what is an abstract class? Please, expand by examples of using both. Explain why?
What is a manifest in .net?
What is the difference between response.write & response.output.write?
What are the challenging issues you have faced in implementation project/Maintainance project in .net Functionality? How you have overcome that issue?
What relationship is between a process, application domain, and application?
How can you assign an rgb color to a system.drawing.color object?
What is Complex Class in .NET?
How is .net able to support a lot of languages?
What are the different.net tools which you used in projects?
What is Flyout Design Pattern in .NET?
Is .net front end or backend?
What is delegation in .net?
What is clr in .net?
Explain about .Net products?
Explain what is an interface and what is an abstract class? Please, expand by examples of using both. Explain why?