Interview questions

JIT in .NET

Next question>>
JIT in .NET  - April 1, 2009 at 17:30 PM by Rajmeet Ghai

Explain the different types of JIT in .NET.

JIT compiler is a part of the runtime execution environment that helps in a higher performance by placing the complied code in the cache for a faster execution.

In Microsoft .NET there are three types of JIT compilers:

Pre-JIT :- When an application is being deployed, the Pre-JIT complier compiles the complete source code into a local code in a single compilation cycle.

  • 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 that are called at runtime and stored in the cache. This increases speed because subsequent calls to these methods are executed from cache.
Next question>>

Also read     

What is a CLR (Common Language Runtime)?

Common Language Runtime is a run time environment for .NET..........

Explain the concepts and capabilities of Assembly in .NET

An assembly is a collection of files (dll’s, exe’s), group of resources that help in creating a logical unit of functionality...........   

What is GAC in .NET?

When an application is shared amongst several other applications, the complete machine code is present the Global assembly cache............

Explain different properties of Object Oriented Systems.

An object oriented system revolves around a Class and objects. A class is used to describe characteristics of any entity of the real world..............  

What are the concepts of DISPOSE method?

Dispose method belongs to IDisposable interface. It is used to free unmanaged resources like files, network connection etc..............

 
Latest placement tests
Latest links
 
Latest MCQs
» General awareness - Banking » ASP.NET » PL/SQL » Mechanical Engineering
» IAS Prelims GS » Java » Programming Language » Electrical Engineering
» English » C++ » Software Engineering » Electronic Engineering
» Quantitative Aptitude » Oracle » English » Finance
Home | About us | Sitemap | Contact us | We are hiring