Please wait...
/
-
Explanation:
Intermediate code is:
hence option 3 is the most suitable option here.
Consider the following the statements
S1: Static allocation bindings do not change at runtime
S2: Heap allocation allocates and de-allocates storage at run time
Consider the productions for the below given grammar?
S → Q | S # Q
Q → Q # P | P
P → R @ P | R
R → id
From grammar, it can be said that
Associativity
Since S is left recursive therefore # is left-associative
Since Q is left recursive therefore # is left-associative
Since P is right recursive therefore @ is right-associative
Order of preference:
# has the lowest order of precedence
@ has the highest order of precedence
Consider the following C code fragment:
void main()
{
…
x()
}
int x()
y()
int y()
Consider the following statements:
(i) The symbol table contains information about the lexical and the syntactical structure of the program.
(ii) Output of the semantic analysis is the annotated parse tree.
(iii) The intermediate code generator does not use the symbol table.
(iv) The intermediate code generation and the machine code generation can never be combined in a single step.
Which of the above statement/s is/are TRUE about the compilation?
(i) True: The symbol table contains information about the lexical and the syntactical structure of the program.
(ii) True: Output of the semantic analysis is the annotated parse tree.
(iii) False: The intermediate code generator does use the symbol table.
(iv) False: The intermediate code generation and the machine code generation can be combined in a single step.
Consider the following code segment:
p = q – r
s = r + t
p = s + p
s = a + s
What it the minimum number of total variables required to convert the above code segment to static single assignment?
In compiler design, static single assignment form (SSA) is a property of an intermediate representation, which requires that each variable is assigned exactly once, and every variable is defined before it is used.
t1 = q – r
t2 = r + t
t3 = t2 + t1
t4 = a + t2
Variables are: t1, q, r, t2, t, t3, t4, a
Therefore, 8 variables are present in static single assignment form.
Consider the statement
do
i = i + 1;
While(a[i] < b);
t1 = i + 1
i = t1
t2 = i * 8 // refers memory allocation for given data type
t3 = a[t2]
if t3 < b
Hence, 3 variables are required in three address code.
Choose the equivalent prefix form of the following expression
(a + (b − c))* ((d − e)/(f + g − h))
Using given prefix form we can draw the expression tree as follows:
* is the root.
+ is its left child and / is right.
a is the left child of + and - is the right.
b and c are the left and right child of - respectively.
/ has - at both left and right child node.
left child node of / has d and c as left and right child respectively.
right child node of / has + and h as the left and right child respectively.
+ has f and g as left and right child respectively.
Using this tree we can deduct that prefix form of this tree is * +a − bc /− de − +fgh.
Consider the grammar defined by the following production
P → Q | P * Q
Q → R + Q | R
R → T – R | T
T → id
where * is multiplication, + is addition and – is subtraction operation.
From the grammar it can be said that
Since P is left recursive therefore * is left associative
Since Q is right recursive therefore + is right associative
Since R is right recursive therefore – is right associative
Also, - has highest order of precedence and * has lowest order of precedence
Therefore
(9 * 5) * ((11 – (10 – 8)) + 3)
= 45 × 12 = 540
Consider the following table:
A.
Activation record
p.
Linking loader
B.
Location counter
q.
Garbage collection
C.
Reference counts
r.
Subroutine call
D.
Address relocation
s.
Assembler
Matching A, B, C, D in the same order gives:
Activation record - Subroutine call
Location counter- Assembler
Reference counts- Garbage collection
Address relocation- Linking loader
Correct (-)
Wrong (-)
Skipped (-)