Advanced C#
Q90 / 100

What is the .NET runtime's tiered compilation?

Correct! Well done.

Incorrect.

The correct answer is B) Running new methods with quick-JIT first, then re-JIT-compiling hot methods with full optimizations after they are called frequently

B

Correct Answer

Running new methods with quick-JIT first, then re-JIT-compiling hot methods with full optimizations after they are called frequently

Explanation

Tiered compilation (enabled by default) starts with Tier 0 (quick JIT) for fast startup, then promotes hot methods to Tier 1 (full optimized JIT) improving peak throughput.

Progress
90/100