InterviewSolution
Saved Bookmarks
| 1. |
In the following grammarX :: = X ⊕ Y / YY :: = Z * Y / ZZ :: = idWhich of the following is true?a. ‘⊕’ is left associative while ‘*’ is right associativeb. Both ‘⊕’ and ‘*’ are left associativec. ‘⊕’ is right associative while ‘*’ is left associatived. None of the above(A) a(B) b(C) c(D) d |
| Answer» | |