Consider the following grammar: $S\rightarrow FR$ $ R\rightarrow * S\mid \varepsilon $ $ F\rightarrow id $ In the predictive parser table, M, of the grammar the entries M[S,id] and M[R,\$] respectively are
First $S = \{ id \}$ Follow $R = \{ \$ \}$ so $M[S,id] = S \rightarrow FR$ $M[S,\$] = R \rightarrow \epsilon$ So ans is A
Answer: