Question
Let the number of states in SLR(1), LR(1) and LALR(1) parsers for the grammar n1 n2 and n3 respectively.
a.
n1 < n2 < n3
b.
n1 = n3 < n2
c.
n1 = n2 = n3
d.
n1 $ n3 $ n2
Posted under Compiler Design
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. S -> (S)| a Let the number of states in SLR(1), LR(1) and LALR(1) parsers for the grammar n1 n2 and n3 respectively.
Similar Questions
Discover Related MCQs
Q. Consider line 3:
Int main()
{ int 1,N;
Fro (I,1 N,1);
}
Identify the compiler’s response about this line while creating the object-module
View solution
Q. Which one of the following is true about the action of yacc for the given grammar?
View solution
Q. What precedence and associativity properties does the generated parser realize?
View solution
Q. Consider the following grammar.
S > S * E
S > E
E > F + E
E > F
F > id
Consider the following LR(0) items corresponding to the grammar above
(i) S -> S * .E
(ii) E -> F . + E
(iii) E -> F + .E
Given the items above, which two of them will appear in the same set in the canonical sets-of-items for the grammar?
View solution
Q. Consider the following grammar
S > FR
R > * S | ε
F > id
In the predictive parser table, M , of the grammar the entries M [ S, id] and M [ R,$] respectively
View solution
Q. Consider the following translation scheme.
S > ER
R > * E{print{’ * ’);
R | f
E > F + E{print(’ + ’); | F F > (S) | id{print(id.value);}
Here id is a taken that represents an integer and id, value represents the corresponding integer value. For an input ‘2 * 3 + 4’, this translation scheme prints
View solution
Q. Consider the following C code segment.
for if i # i } } }
Which one to the following false?
View solution
Q. E -> number Eval number val
E E .val E .VAL E .val
E # E E .val E .VAL E .val
;
The above grammar and the semantic rules are fed to a yacc tool (which is an LALR (1) parser generator) for parsing and evaluating arithmetic expressions. Which one of the following is true about the action of yacc for the given grammar?
View solution
Q. E -> number Eval number val
E E .val E .VAL E .val
E # E E .val E .VAL E .val
;
Assume the conflicts part (a) of this question are resolved and an LALR (1) parser is generated for parsing arithmetic expressions as per the given grammar.
Consider an expression 3 # 2 + 1. What precedence and associativity properties does the generated parser realize?
View solution
Q. Consider the following grammar.
S -> S * E
S -> E
E -> F + E
E -> F
F -> id
Consider the following LR (0) items corresponding to the grammar above.
(i) S -> S * .E
(ii) E -> F. + E
(iii) E “F + .E
Given the items above, which two of them will appear in the same set in the canonical sets-of-items for the grammar?
View solution
Q. Consider the following grammar
S -> FR
R -> * S | ε
F -> id
In the predictive parser table, M, of the grammar the entries M [S, id] and M [R, $] respectively
View solution
Q. Consider the following translation scheme.
S -> ER
R -> * E{print{’ * ’);
R | f
E -> F + E{print(’ + ’); | F
F -> (S) | id{print(id.value);}
Here id is a taken that represents an integer and id. value represents the corresponding integer value. For an input ‘2 * 3 + 4’, this translation scheme prints
View solution
Q. Consider the following C code segment.
for for if i # i } } }
Which one to the following false?
View solution
Q. Which one of the following grammars generates the language
L = (a i b i | i ! j}?
View solution
Q. In the correct grammar above, what is the length of the derivation (number of steps starting from S to generate the string a l b m with l ! m?
View solution
Q. Consider the grammar with non-terminals
N = {S , C , S}, terminals T = {a, b , i , t, e}, with S as the start symbol, and the following of rules
S -> iCtSS1 | a
S1 -> eS | ε
C -> b
The grammar is NOTLL(1) because:
View solution
Q. Consider the following two statements:
P: Every regular grammar is LL(1)
Q: Every regular set has LR(1) grammar
Which of the following is TRUE?
View solution
Q. In a simplified computer the instructions are:
OP R j , Ri − Performs Rj OP Ri and stores the result in register Ri
OP m, Ri − Performs val OP Ri abd stores the result in Ri. value
denotes the content of memory location m.
MCVm, Ri −Moves the content off memory loction m to register Ri .
MCVm, Ri , m −Moves the content of register Ri to memory location m.
The computer has only two registers, and OP is either ADD or SUB. Consider the following basic block:
t1 = a + b
t2 = c + d
t 3 = e − t2
t 4 = t 1 − t2
Assume that all operands are initially in memory. The final value of the computation should be in memory. What is the minimum number of MOV instructions in the code generated for this basic block?
View solution
Q. S->bA S->aB
A->a B->b
A->aS B->bS
A->bAA B->aBB
Which of the following strings is generated by the grammar?
View solution
Q. S->bA S->aB
A->a B->b
A->aS B->bS
A->bAA B->aBB
how many derivation trees are there?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Compiler Design? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!