InterviewSolution
Saved Bookmarks
| 1. |
An intermediate code form is ___________(a) Postfix Notation(b) Syntax Trees(c) Three address code(d) All of the mentionedThis question was addressed to me in examination.This is a very interesting question from Data Structure for Representing Parsing Table topic in division Bottom Up Parsing of Compiler |
|
Answer» RIGHT option is (d) All of the mentioned For explanation I would say: Intermediate CODE GENERATOR takes input from its predecessor phase, semantic analyzer, in the FORM of an annotated syntax TREE. |
|