In the C language
-
At most one activation record exists between the current activation record and the activation record for the main.
-
The number of activation records between the current activation record and the activation record for the main depends on the actual function calling sequence.
-
The visibility of global variables depends on the actual function calling sequence.
-
Recursion requires the activation record for the recursive function to be saved on a different stack before the recursive fraction can be called.
Reveal answer
Fill a bubble to check yourself
A
Correct answer
Explanation
Activation record is the contiguous memory locations where the data needed by the program is kept so at most one activation record exist between current activation record & the record for the main.