ANS (C)
LL(1) parsers are predictive parsers.
- LL = Left to right scan, Leftmost derivation.
- (1) = Uses 1 lookahead symbol.
Since the parser already knows which production to choose using the parsing table and one lookahead token,
there is no need to backtrack.
Also,
LL(1) must not have left recursion
LL(1) is not more powerful than SR(1) or SLR
LL(1) must not have FIRST-FIRST conflict
LL(1) must not have FIRST-FOLLOW conflict
LL(1) must not be ambiguous