Multiple choice technology programming languages

which program will you use to assemble a program written in IL:

  1. ildasm

  2. clr

  3. ilasm

  4. All the above

Reveal answer Fill a bubble to check yourself
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.