Which of the followingsentences CANNOT be derived using the grammar of Example3.
ID: 3616814 • Letter: W
Question
Which of the followingsentences CANNOT be derived using the grammar of Example3.2?
a) A = A * (B + (C * A))
b) A = A + (B + C)
c) A = C * (A * C + B)
d) A = A * (B + ( C ))
Example 3.2 Grammar
<assign> =><id> = <expr>
<id> => A|B|C
<expr> => <id> + <expr>
| <id> * <expr>
| ( <expr> )
| <id>