which program will you use to assemble a program written in IL:
-
ilasm
-
ildasm
-
clr
-
None of the above
A
Correct answer
Explanation
ilasm (IL Assembler) converts IL (Intermediate Language) code into executable code. ildasm (option B) is the disassembler that converts executable code to IL. The CLR (option C) is the runtime environment that executes IL, not an assembler. ilasm is the correct tool for assembling IL programs.