adplus-dvertising
frame-decoration

Question

Expansion time variables are used

a.

Before expansion of micro calls

b.

only during expansion of macro calls

c.

After expansion of micro calls

d.

Any one of the above

Answer: (b).only during expansion of macro calls

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Expansion time variables are used

Similar Questions

Discover Related MCQs

Q. Macro processor is an inbuilt function of ?

Q. If a number of instructions are repeating through the main program, then to reduce the length of the program, ……. is used.

Q. The process of assigning a label or macroname to the string is called

Q. A macro within a macro is called

Q. A macro can be defined at

Q. A macro can be used

Q. The end of a macro can be represented by the directive

Q. Inserting the statements and instructions represented by macro, directly at the place of the macroname, in the program, is known as

Q. The time required for execution of a macro is ……… that of procedure.

Q. Which of the following statements is incorrect?

Q. The beginning of the macro can be represented as

Q. Nested Macro calls are expanded using the

Q. Macro-processors are ______

Q. Macro processor is an inbuilt function of -

Q. A processor-

Q. A co-processor-

Q. Advantage of incorporating the macro-processor into pass 1 is that

Q. In which way a macro processor for assembly language can be implemented?

Q. What are x and y in the following macro definition? macro Add x, y Load y Mul x Store y end macro

Q. What is the value of X printed by the following program ? program COMPUTE ( input, output ); var X : integer ; procedure FIND ( X: real ) ; begin X : = sqrt ( X ) ; end ; begin X : = 2 FIND(X);
writeln(X);
end.