InterviewSolution
Saved Bookmarks
| 1. |
In shift reduce parser ,shift operation is performed |
|
Answer» Sift reduce parsing performs the two actions: shift and reduce. That's why it is known as shift reduces parsing. At the shift ACTION, the current symbol in the INPUT string is PUSHED to a stack. At each REDUCTION, the symbols will replaced by the non-terminals.Explanation:hope it's helps you |
|