Multiple choice technology operating systems

All programs in C# are compiled to a common format. What is this format called?

  1. .EXE format

  2. Common Intermediate Language (CIL)

  3. JAVA

  4. ByteCode

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

C# source code is compiled by the compiler into Common Intermediate Language (CIL), which is a CPU-independent instruction set. This intermediate format is later JIT-compiled into native machine code at runtime.