Home » Programming & Data Structure » Programming and data structure miscellaneous » Question

Programming and data structure miscellaneous

Programming & Data Structure

  1. Consider the program given below, in a block-structured pseudo-language with lexical scoping an nesting of procedures permitted.
    Program main;
      Var ......
      Procedure A1;
       Var .....
       Call A2;
    End A1
    Procedure A2;
       Var...
       Procedure A21;
        Var....
        Call A1;
       End A21
       Call A21;
      End A2;
      Call A1;
    End main.
    Consider the calling chain :
    Main → A1 → A2 → A21 → A1
    The correct set of activation records along with their access links is given by



Correct Option: D

Link to activation record of closest lexically enclosing block in program text. It depends on the static program text



Your comments will be displayed only after manual approval.