10,477 views

5 Answers

Best answer
13 votes
13 votes
RDP is a Top-Down Predictive Parser Answer : A

LL(1) is also a Top-Down Predictive Parser.
selected by
7 votes
7 votes

Answer : Top Down Parser

Recursive descent is a top-down parsing technique that constructs the parse tree from the top and the input is read from left to right. It uses procedures for every terminal and non-terminal entity. This parsing technique recursively parses the input to make a parse tree, which may or may not require back-tracking. But the grammar associated with it (if not left factored) cannot avoid back-tracking. A form of recursive-descent parsing that does not require any back-tracking is known as predictive parsing.

Reference 1 : RDP

Reference 2 : RDP

Answer:

Related questions

5 votes
5 votes
3 answers
1
habedo007 asked Jul 5, 2016
12,006 views
A top-down parser generatesRightmost DerivationRightmost derivation in reverseLeftmost derivationLeftmost derivation in reverse
8 votes
8 votes
2 answers
2
Arjun asked Jul 6, 2016
3,900 views
A simple two-pass assembler does which of the following in the first pass:Checks to see if the instructions are legal in the current assembly modeIt allocates space for t...
10 votes
10 votes
2 answers
3
ManojK asked Jul 4, 2016
11,860 views
Peephole optimization is form ofLoop optimizationLocal optimizationConstant foldingData flow analysis