E ::= E + T | E - T | T T ::= T * F | T / F | F F ::= ( E ) | iconstruct parse tree and leftmost derivations for the following expressions:
a. i*(i+i) b. i = i - i c. (i+i)/(i-i)
Find the FIRST and FOLLOW sets for the grammar
S::= ABC A ::= a | Cb | < nil > B ::= c | dA | < nil > C :: e | f