Recall & Review
beginner
What is the main purpose of code generation in a compiler?
The main purpose of code generation is to translate the intermediate representation of a program into executable machine code that a computer can run directly.
Click to reveal answer
beginner
How does code generation ensure the output is executable?
Code generation produces output in a format that matches the target machine's instruction set, so the output can be loaded and run by the computer's processor.
Click to reveal answer
intermediate
What role does the target machine architecture play in code generation?
The target machine architecture defines the instructions and formats that code generation must produce to create executable code compatible with that machine.
Click to reveal answer
intermediate
Why can't code generation produce output in a high-level language?
Because the goal is to create executable output, code generation must produce low-level machine code or assembly, which the computer hardware can directly execute, unlike high-level languages which need further translation.
Click to reveal answer
intermediate
What is the difference between code generation and interpretation regarding executable output?
Code generation creates a standalone executable file that runs directly on hardware, while interpretation executes code line-by-line without producing a separate executable file.
Click to reveal answer
What does code generation produce in a compiler?
✗ Incorrect
Code generation produces executable machine code that the computer can run directly.
Why must code generation match the target machine's instruction set?
✗ Incorrect
Matching the target machine's instruction set ensures the output is executable by that machine.
Which of these is NOT a reason code generation produces executable output?
✗ Incorrect
Code generation focuses on machine instructions, not human-readable code.
What is the difference between code generation and interpretation?
✗ Incorrect
Code generation produces executable files, while interpretation executes code without creating separate executables.
Which part of the compiler produces output that the computer can run?
✗ Incorrect
Code generation produces the final machine code that the computer executes.
Explain why code generation produces executable output and how it relates to the target machine.
Think about how the computer understands instructions.
You got /3 concepts.
Describe the difference between code generation and interpretation in terms of executable output.
Consider how programs run after compilation or interpretation.
You got /3 concepts.