Multiple choice technology web technology

How many levels of compilation happens in .NET ?

  1. 2

  2. 4

  3. 3

  4. 1

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

.NET has two levels of compilation. First, the language compiler (like C# or VB.NET) converts source code to Intermediate Language (IL). Second, the JIT compiler converts IL to native machine code at runtime. This two-stage process enables cross-language integration.