retagged by
4,621 views

1 Answer

4 votes
4 votes

A general activation record consist of the following things:

  • Local variables: hold the data that is local to the execution of the procedure.
  • Temporary values: stores the values that arise in the evaluation of an expression.
  • Machine status: holds the information about status of machine just before the function call.
  • Access link (optional): refers to non-local data held in other activation records.
  • Control link (optional): points to activation record of caller.
  • Return value: used by the called procedure to return a value to calling procedure
  • Actual parameters of A

 so ans is (3) Global variables of program

Related questions

1 votes
1 votes
1 answer
1
kallu singh asked Sep 5, 2017
404 views
Q. Consider the following grammar :1. S → XYX 2. X → Yc3. X → sX 4. X → ε5. Y → eXFind the first an...
0 votes
0 votes
0 answers
2
kallu singh asked Sep 5, 2017
305 views
Q.Find the C statement which has a syntax error.1.If (z);2.For (a, b, c);3.While (a, b);4. None of these