NPTEL Compiler Design Week 10 Assignment Answers 2025
1. Which of the following is NOT possible to realize if activation record is static
(A) Passing parameters
(B) Creating local variables
(C) Supporting recursion
(D) None of the other options
Answer :- For Answers Click Here
2. Control link points to the
(A) Current activation record
(B) Parent activation record
(C) Child activation record
(D) None of the other options
Answer :-
3. Intermediate code generation for a compiler is
(A) Must
(B) Optional
(C) Depends on language
(D) None of the other options
Answer :-
4. P-code is used for
(A) Stack-based machine
(B) Accumulator based machine
(C) Two operand addresses
(D) None of the other options
Answer :-
5. In the activation record, local variables can be accessed from frame pointer with offset value
(A) Positive
(B) Negative
(C) May be positive or negative
(D) Cannot be accessed
Answer :-
6. Access link points to the
(A) Current activation record
(B) Parent activation record
(C) Child activation record
(D) None of the other options
Answer :- For Answers Click Here
7. If pointer is supported in the high-level language,
(A) Must also be supported in the intermediate language
(B) May not be supported in the intermediate language
(C) Depends on language
(D) None of the other options
Answer :-
8. Frame pointer points to the
(A) Current activation record
(B) Parent activation record
(C) Child activation record
(D) None of the other options
Answer :-
9. “Display” helps to locate easily
(A) Local variables
(B) Global variables
(C) Non-local variables
(D) All of the other options
Answer :-
10. An intermediate language should be
(A) Close to target machine
(B) Machine independent
(C) All operators of high-level language supported
(D) All of the other options
Answer :-
11. Which of the following is a key purpose of the stack pointer in an activation record?
(A) To store the base address of the current function
(B) To manage dynamic memory allocation
(C) To track the top of the runtime stack
(D) To store global variables
Answer :-
12. What happens if recursion is attempted in a system with a static activation record?
(A) It executes successfully but inefficiently
(B) It results in incorrect execution since previous function calls get overwritten
(C) It executes normally without issues
(D) It leads to infinite recursion by default
Answer :-
13. What is the primary advantage of using intermediate code in a compiler?
(A) It simplifies code generation for multiple target machines
(B) It improves the execution speed of the compiled program
(C) It eliminates the need for optimization
(D) It ensures that all high-level language features are directly mapped to assembly
Answer :- For Answers Click Here