MCQ
Q.
Consider the grammar defined by the following production rules:
S --> T * P
T --> U | T * U
P --> Q + P | Q
Q --> Id
U --> IdWhich one of the following is TRUE?
Correct Answer: B
It is associative we can see and tell.
Second productions latter part shows left recursion and is left associative.