The vbc.exe compiler generates:
-
IL Code
-
Native code
-
Byte Code
-
None of these
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.