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.

Teju said:   1 decade ago
Chowdary is up to point:-)

San said:   1 decade ago
http://msdn.microsoft.com/en-us/library/6sa1z852.aspx

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.

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

Babu said:   1 decade ago
MSIL or CIL is the same code.

MSIL/CIL Means Bytecode ---(Converted By JIT Compiler)--->Machine Code (Native Code)

Amol said:   1 decade ago
JIT work is to convert CIL code into Native Language.

Bijayananda pradhan said:   1 decade ago
I am n't understand CLR descriptions.

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

Ravi Patel said:   1 decade ago
When any programmer writes code so its must convert to msil code and after that its convert into native code by the jit compiler, which is understandable to microprocessor.


Post your comments here:

Your comments will be displayed after verification.