9,573 views

3 Answers

Best answer
20 votes
20 votes
  1. Recursive descent parser-TOP DOWN PARSER

  2. Operator precedence parser-BOTTOM UP PARSER

  3. An LR(k) parser.-BOTTOM UP PARSER

  4. An LALR(k) parser-BOTTOM UP PARSER

selected by
0 votes
0 votes
Recursive descent parser ...is top down parser......
Don't use any predictive parsing table....for each non terminal recursive procedure is constructed...
Without backtracking.
Answer:

Related questions

75 votes
75 votes
8 answers
3
Kathleen asked Sep 21, 2014
35,373 views
Consider the following two statements:P: Every regular grammar is LL(1)Q: Every regular set has a LR(1) grammarWhich of the following is TRUE?Both P and Q are trueP is tr...