Question:medium

Which of the following statements is TRUE regarding LL(1) grammars?

Show Hint

To convert a grammar into an LL(1) format, you must perform "Left Recursion Elimination" and "Left Factoring" to ensure the parser can always make a unique choice based on the next input symbol.
Updated On: Jul 4, 2026
  • A grammar with left recursion can be LL(1).
  • Every LL(1) grammar is also LR(1).
  • LL(1) parsers are bottom-up parsers.
  • Ambiguous grammars can be LL(1).
Show Solution

The Correct Option is B

Solution and Explanation

Was this answer helpful?
0