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 () {

 

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!