C# Programming - .NET Framework - Discussion

Discussion Forum : .NET Framework - General Questions (Q.No. 2)
2.
Which of the following are valid .NET CLR JIT performance counters?
  1. Total memory used for JIT compilation
  2. Average memory used for JIT compilation
  3. Number of methods that failed to compile with the standard JIT
  4. Percentage of processor time spent performing JIT compilation
  5. Percentage of memory currently dedicated for JIT compilation
1, 5
3, 4
1, 2
4, 5
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
31 comments Page 2 of 4.

HANSRAJ SUMAN said:   1 decade ago
JIT is Just In Time.

JIT = One time compiler and the store the data pre-compiler and use direct compile second time.

Sangamesh said:   1 decade ago
Source Code --CLR(.Net Virtual Machine)-->MSIL(IL Code) ---JIT-->Native code(Machine Code).

Ubedullah said:   1 decade ago
Just in Time compile not compiles complete source code, it compiles code that to execute.

Manish Gupta said:   1 decade ago
Actually JIT work is to convert CIL (MSIL) code into Native Language (machine Language).

Jiya said:   1 decade ago
JIT (Just In Time) compiler which is improve the performance of the program.

Ubedullah Kalhoro said:   1 decade ago
JIT just in time compiler compiles source in parts not complete source code.

Geetika said:   1 decade ago
Just in time generates the native code after the MSIL comliled by the CLR.

Narendra said:   1 decade ago
The MSIL code convert to target code with the help of JIT compilation.

Farhat Ahmad said:   1 decade ago
JIT{just in time) compiler converts byte code to its native code.

Akshada said:   1 decade ago
Please explain the term JIT in full detail and how it works?


Post your comments here:

Your comments will be displayed after verification.