Multiple choice technology programming languages

The vbc.exe compiler generates:

  1. IL Code

  2. Native code

  3. Byte Code

  4. None of these

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

The vbc.exe (Visual Basic Command-Line Compiler) generates IL (Intermediate Language) code, not native code. This IL code is then compiled to native code by the JIT (Just-In-Time) compiler at runtime by the CLR. This is consistent with how all .NET languages work - they compile to IL, not directly to native machine code.