Question
a.
Recursive
b.
Constructive
c.
Non recursive
d.
Both a and b
Posted under Compiler Design
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Predictive parsers can be
Similar Questions
Discover Related MCQs
Q. An example of intermediate language is
View solution
Q. In a two pass assembler the object code generation is done during the
View solution
Q. A programming language is to be designed to run on a machine that does not have a big memory.
View solution
Q. Which of the following system software resides in main memory always?
View solution
Q. What value does the variable a have after ALL of the code above executes?
int a;
int b;
a=1;
b=a++;
View solution
Q. What value does the variable z have after ALL of the code above executes?
int x;
int y;
int z;
x=3;
y=4;
z = ++x * y++;
View solution
Q. What value does the variable x have after ALL of the code above executes?
int x;
int y;
int z;
x=3;
y=4;
z = ++x * y++;
View solution
Q. What value does the variable y have after ALL of the code above executes?
int x;
int y;
int z;
x=3;
y=4;
z = ++x * y++;
View solution
Q. Which of the following operators has the highest precedence?
View solution
Q. If i=1 j=2,k=3, then what is the value of the expression
!((j + k) > (i + 5))
View solution
Q. The expression 5 – 2 – 3 * 5 – 2 will evaluate to 18, if – is left associative and
View solution
Q. Coercion
View solution
Q. Which of the following operators takes only integer operands ?
View solution
Q. Pick the operators that associate from the left
View solution
Q. Pick the operators that associate from the right
View solution
Q. Pick the operators that associate from left to right
View solution
Q. What is the index number of the last element of an array with 29 elements?
View solution
Q. Which of the following is a two-dimensional array?
View solution
Q. Which of the following correctly accesses the seventh element stored in tan?
View solution
Q. Which of the following gives the memory address of the first element in array tan?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Compiler Design? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!