Multiple choice

The top down parsing method is also called

  1. recursive descent parsing

  2. shift reduce parsing

  3. operator precedence parsing

  4. none of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Top-down parsing is also called recursive descent parsing because it recursively expands non-terminals starting from the root. Shift-reduce and operator precedence are bottom-up techniques.