What is JIT(Just In Time) and How it works?
Answer Posted / shabbir hassan
First i would like to preach about the CLR(Common Language Runtime).Whenever we developed a VB.NET application then we involve two phase of application development.
1)When we write source code for the application.Create classes and objects,debug application and compile them etc..
2)When our source code really executed.
The span which takes place in the second phase is called CLR.
The CLR is a special runtime Environment.This run time is where the source code of an application is compile into a common intermediate language is called(CIL) or Microsoft Intermediate language(MSIL).
When the program is executed then (CIL) code is translated into the native code of the O/S using the JIT compiler.
That is JIT is responsible for compile,and create machine code of a source code.
Work of JIT.
1)Manage memory and resources.
2)Provide maximum throughput.
3)Manage resources & process bandwidth etc.
| Is This Answer Correct ? | 22 Yes | 1 No |
Post New Answer View All Answers
What is the difference between value and reference types?
How to connect crystal report in vb.net ?
What are the objects in asp.net?
What is public assembly?
what is the advantage of option strict on?
What is static member?
what is the need for dynamic controls in vb.net? i would like to know for what purpose should we create the controls dynamically? please give the answer in simple words.
Using VB, how can you change the Mouse Pointer?
How to view an assembly?
What is intermediate langauge?
Explain how to achieve polymorphism in vb.net?
Can you please explain the difference between dataset and datareader?
i am attending to US consulate i kept my projects on vb.net ,please help me what questions will be ask on vb.net in us consulate
Can you please explain the difference between system.string and system.stringbuilder classes?
What is code security?