Multiple choice technology programming languages

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

  1. ilasm

  2. ildasm

  3. clr

  4. None of the above

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