Question: int x = 1, y = 2; void outer(): int x = y void nested(): println(Nested+x+,+y) int y = 3 nested() println(Outer: +x+,+y) void main():
int x = 1, y = 2; void outer(): int x = y void nested(): println("Nested"+x+","+y) int y = 3 nested() println("Outer: "+x+","+y)
void main(): outer() println("Main: "+x+","+y)
Now for the segment of pseudo-code above, assume that the language being used here has dynamic scope as discussed in class and in the textbook. Provide a) the output of this program and b) in 2-5 short sentences defend your answer. Note that if you think the program will terminate with an error due to its scope rules, give that as your answer to part a) and then explain where the error occurs and why in part b).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
