InterviewSolution
Saved Bookmarks
| 1. |
What is the function of the syntax phase?(a) recognize the language and to cal the appropriate action routines that will generate the intermediate form or matrix for these constructs(b) Build a literal table and an identifier table(c) Build a uniform symbol table(d) Parse the source program into the basic elements or tokens of the language |
|
Answer» Correct answer is (a) recognize the language and to cal the appropriate action routines that will generate the intermediate form or matrix for these constructs Easiest explanation: In this phase symbol table is created by the compiler which contains the list of lexemes or tokens. |
|