Answer Posted / vinod kumar kushawaha
JIT compiler is a part of the runtime execution environment.
In Microsoft .NET there are three types of JIT compilers.
Pre-JIT : Pre-JIT compiles complete source code into native
code in a single compilation cycle. This is done at the time
of deployment of the application.
Econo-JIT : Econo-JIT 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 thar are
called at runti
Is This Answer Correct ? | 5 Yes | 9 No |
Post New Answer View All Answers
Can I add asp.net mvc testcases in visual studio express?
What are the versions of .net framework?
Explain ASP.NET MVC Identity and Security?
Name a few different return types of a controller action method?
Can you explain renderbody and renderpage in asp.net mvc?
What is renderbody?
What is entity client data provider? : Entity framework
What is the use of the default route {resource}.axd/{*pathinfo} ?
What is .net architecture and framework?
Explain the new features added in version 4 of mvc (mvc4)?
Which is the default http method for an action method?
What is a razor file?
Explain the methods used to render the views in mvc?
Is it possible to cancel filter execution?
How do you handle variable number of segments in a route definition?