symbol tables in separation for all 4 scopes in this program

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter2: Using Data
Section: Chapter Questions
Problem 14RQ
icon
Related questions
icon
Concept explainers
Question

1. Draw the symbol tables in separation for all 4 scopes in this program. Assume each table
contains two columns: name and type.
2. If the language uses static scoping, what’s the expected output from the print statement?
Justify your answer by showing the tree of the symbol tables at the print statement.
3. If the language uses dynamic scoping, what’s the expected output from the print statement?
Justify your answer by showing the tree of the symbol tables at the print statement.

1
2
3
4
5
6
7
8
9
Consider the following pseudo-code. Assume the language has one global scope, and one scope for
each braced code block (including function and branch):
int x = 1;
void f1(int x) {
if (x > 4)
f1 (x
10 |}
11
12
13
14
1);
int x = 5;
f2();
else {
void f2() { print x; }
f1 (6);
Transcribed Image Text:1 2 3 4 5 6 7 8 9 Consider the following pseudo-code. Assume the language has one global scope, and one scope for each braced code block (including function and branch): int x = 1; void f1(int x) { if (x > 4) f1 (x 10 |} 11 12 13 14 1); int x = 5; f2(); else { void f2() { print x; } f1 (6);
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Data Dictionary
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr