Multiple choice technology programming languages

When you write a program in C#, it is compiled to

  1. C# Language Code

  2. Assembly Language Code

  3. Intermediate Language which CLR understands

  4. Pseudo-code

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

C# code is compiled to Intermediate Language (IL), also called Microsoft Intermediate Language (MSIL). The CLR (Common Language Runtime) executes IL through JIT compilation to native machine code. This is different from the original C# source code, assembly language, or pseudocode.