InterviewSolution
Saved Bookmarks
| 1. |
A bottom up parser generates __________(a) Right most derivation(b) Right most derivation in reverse(c) Left most derivation(d) Left most derivation in reverse |
|
Answer» Correct answer is (b) Right most derivation in reverse The best explanation: This corresponds to starting at the leaves of the parse tree. It can be thought of. A process of reducing the string in question to the start symbol of the grammar. Bottom-up parsing is also known as shift-reduce parsing. |
|