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 branching logic control in VB.NET?
Did vb6 support multi-threading ?
What is the use of console application?
Explain how does the xmlserializer work?
What are the advantages of VB.NET?
What is pre-jit?
What do you mean by option strict on?
What’s the difference between private and shared assembly?
my project run very wel in my sytem yhen i am deploying my project on client machine ,after deployment i run my project then it show " can no find server name " what i do .
Explain the difference between namespace and assembly?
how to get dynamic control array position or its index position?
What is the importance of a Button control?
What is public assembly?
What is writeline in vb.net?
What is the differences between dataset.clone and dataset.copy?