which program will you use to assemble a program written in IL:
-
ildasm
-
clr
-
ilasm
-
All the above
C
Correct answer
Explanation
IL (Intermediate Language) code can be assembled into executable code using the IL Assembler (ilasm.exe). The ildasm tool is the IL Disassembler (converts assemblies to IL text), and CLR is the runtime environment. ilasm is the correct tool for assembling IL code into executable format.