Consider the following grammar:
E → TE'
E' →+ TE' |ϵ
T → FT' ; T' → ∗FT' | ϵ
F → (E) | (id)
What will be the result of FIRST (T')?
1
{+ , ϵ}
2
{+ , id}
3
{∗ , id}
4
{∗ , ϵ}
5
Question Not Attempted
Consider the following grammar:
E → TE'
E' →+ TE' |ϵ
T → FT' ; T' → ∗FT' | ϵ
F → (E) | (id)
What will be the result of FIRST (T')?