in Compiler Design edited by
1,869 views
1 vote
1 vote

Which of the following is/are Bottom-Up Parser(s)?

  1. Shift-reduce Parser
  2. Predictive Parser
  3. LL$(1)$ Parser 
  4. LR Parser

in Compiler Design edited by
by
1.9k views

1 Answer

1 vote
1 vote

From the above classifications of parsers, it is clear that LR(k) and shift-reduce parse are types of bottom-up parsers while LL(1) and recursive descent parsers belong to top-down parsers.

Option $(A,D)$ is correct.

Answer:

Related questions