InterviewSolution
Saved Bookmarks
| 1. |
What is Pass 2?(a) Assemble instruction and generate data(b) Perform processing of assembler(c) Write the object program(d) All of the mentioned |
|
Answer» Correct choice is (d) All of the mentioned For explanation: A multi-pass compiler is a type of compiler that processes the source code or abstract syntax tree of a program several times. Each pass takes the result of the previous pass as the input and creates an intermediate output. |
|