C# Programming - .NET Framework - Discussion

Discussion Forum : .NET Framework - General Questions (Q.No. 19)
19.
Which of the following statements are correct about JIT?
  1. JIT compiler compiles instructions into machine code at run time.
  2. The code compiler by the JIT compiler runs under CLR.
  3. The instructions compiled by JIT compilers are written in native code.
  4. The instructions compiled by JIT compilers are written in Intermediate Language (IL) code.
  5. The method is JIT compiled even if it is not called
1, 2, 3
2, 4
3, 4, 5
1, 2
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
14 comments Page 2 of 2.

Preethi said:   1 decade ago
Can anyone explain me how the third option is correct here?

Rahul said:   1 decade ago
JIT only convert the IL code to native code. not vice versa. IL produce by clr. IL code produce from source code which we written

Ashutosh said:   1 decade ago
I agree with Venkatesh, Even the option 4 is correct apart from 1,2,3

Venkatesh said:   1 decade ago
Can any one explain why this option is not correct "The instructions compiled by JIT compilers are written in Intermediate Language (IL) code".


Post your comments here:

Your comments will be displayed after verification.