adplus-dvertising
frame-decoration

Question

What is the evaluation stack used for in .NET programs?

a.

To store immediate information such as input and output data for instructions

b.

To manage state information in .NET programs

c.

To store local variables in a function

d.

To store activation records for currently running functions

Posted under Reverse Engineering

Answer: (a).To store immediate information such as input and output data for instructions Explanation:The evaluation stack is used for managing state information in .NET programs, similar to how IA-32 instructions use registers. It is used by IL code to store immediate information such as input and output data for instructions.

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the evaluation stack used for in .NET programs?