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 intermediate language?
Explain nested classes?
Explain the difference between thread and process?
How to connect crystal report in vb.net ?
Explain strong name in .net assembly?
Explain the advantage of option strict on?
What is code security?
Define cls?
Explain cls?
Name some different types of control?
What is the difference between value and reference types?
What is visual basic.net culture?
What is option strict?
Explain how to achieve polymorphism in vb.net?
Can you please explain the difference between thread and process?