adplus-dvertising
frame-decoration

Question

In Lex, a class is complemented by first placing

a.

^

b.

OR

c.

d.

NOT

Posted under Compiler Design

Answer: (a).^

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. In Lex, a class is complemented by first placing

Similar Questions

Discover Related MCQs

Q. Which of the following is not a feature of compiler?

Q. Predictive parsers can be

Q. An example of intermediate language is

Q. In a two pass assembler the object code generation is done during the

Q. A programming language is to be designed to run on a machine that does not have a big memory.

Q. Which of the following system software resides in main memory always?

Q. What value does the variable a have after ALL of the code above executes?

int a;
int b;
a=1;
b=a++;

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++;

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++;

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++;

Q. Which of the following operators has the highest precedence?

Q. If i=1 j=2,k=3, then what is the value of the expression
!((j + k) > (i + 5))

Q. The expression 5 – 2 – 3 * 5 – 2 will evaluate to 18, if – is left associative and

Q. Coercion

Q. Which of the following operators takes only integer operands ?

Q. Pick the operators that associate from the left

Q. Pick the operators that associate from the right

Q. Pick the operators that associate from left to right

Q. What is the index number of the last element of an array with 29 elements?

Q. Which of the following is a two-dimensional array?