Consider the grammar
E->TE’
E’->+TE’|ϵ
T->FT’
T’->*FT’
F->(E)|id
Find \(First(E) \cup Follow(E')\)
1
{id,(,),$}
2
{+,*,),$}
3
{+,(,*,),$}
4
{+,),$}
5
Question Not Attempted
Consider the grammar
E->TE’
E’->+TE’|ϵ
T->FT’
T’->*FT’
F->(E)|id
Find \(First(E) \cup Follow(E')\)