Question: Consider this program: { int x = 1; void p () { x = x * 5; write (x); } void q() { int

Consider this program: { int x = 1; void p () { x = x * 5; write (x); } void q() { int x = 10; p (); write (x); } q (); write (x); { int x = 8; p (); write (x); } write (x); } What does it print if the language uses (i) static scope, (ii) dynamic scope? Explain your answers by describing how the program is executed.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
