adplus-dvertising
frame-decoration

Question

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

a.

Prefer a 2 pass compiler

b.

Prefer an interpreter

c.

Not support recursion

d.

All of the mentioned

Answer: (d).All of the mentioned

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

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

Similar Questions

Discover Related MCQs

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?

Q. Which of the following correctly accesses the seventh element stored in tan?

Q. Which of the following gives the memory address of the first element in array tan?

Q. What does the following declaration mean? int (*a)[10] a is

Q. What is the meaning of following declaration?
Int arr[20]

Q. int a[20]
What will be the size of above array elements?