MCQ
Q.
Consider the grammar.
E ? E + n | E
Correct Answer: D
E ? E + n {Applying E ? E + n }
? E + E * n {Applying E ? E * n }
? E + n * n {Applying E ? n }
? n + n * n {Applying E ? n }.