62) Given the following Pascal-like program segment
Procedure A,
x, y : integer ;
Procedure B;
x, z : real ;
S1
end B;
Procedure C;
i : integer ;
S2
end C
end A;
The variables accessible in S1 and S2 are
Answer is:
x of B, z and y in S1 and x of A, i and y in S2
Related Compiler Design MCQ with Answers
Answer is:
all of these
Explanation:
An intermediate code form is
* postfix notation
* syntax trees
* three address codes
Answer is:
all of these
Explanation:
The best way to compare the different implementations of symbol table is to compare the time required to
* add a new name
* make an inquiry
* add a new name and make an inquiry
Answer is: