Question: Static and Dynamic Scoping Use the following code for question 3a-3b. x : integer global procedure set_xin : integer) x := n procedure add_one() x

Static and Dynamic Scoping Use the following code for question 3a-3b. x : integer global procedure set_xin : integer) x := n procedure add_one() x := n + 1 procedure print_x write_integer (X) procedure first set_x (2) print_x procedure second x : integer set_x (3) print_x set_x (1) first() print_x second() add_one() print_x What will be printed out if the language uses "static scoping"? Why? Justify your answers. What will be printed out if the language uses "dynamic scoping") Why? Justify your answers
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
