Programming Languages

Assignment 2

  1. Consider the following code written in a language with nested subroutines:

 

procedure main()

a : integer

 

procedure B(a : integer)

x : integer

 

procedure A(n : integer)

a := n

 

procedure R(m : integer)

write_integer(x)

x = x – 2

if x > 1

R(m + 1)

else

A(m)

 

–– body of B

x := a × a

R(1)

 

–– body of main

B(2)

write_integer(a)

 

  1. What does this program print assuming static scope, respectively dynamic scope? Explain your answer.
  2. Show the frames on the stack when procedure A has just been called. For each frame, show the values of the local variables and the static links.

 

  1. Consider the following pseudocode with nested subroutines:

 

  1. procedure main()
  2. a : integer := 1
  3. b : integer := 2
  4. c : integer := 3

 

  1. procedure first()
  2. a : integer := c
  3. c : integer := b

 

  1. procedure second()
  2. c : integer := 4

 

  1. –-body of second
  2. print a, b, c

 

  1. b : integer := 5

 

  1. –body of first
  2. second()
  3. print a, b, c

 

  1. –body of main
  2. first()
  3. print a, b, c

 

What does the program print (or will the compiler identify static semantic errors) if we assume that:

 

  1. names must be declared before use, and the scope of a name extends from its declaration through the end of the block?
  2. names must be declared before use, but the scope of a name is the entire block in which it is declared?

 

  1. Consider the following program written in generic pseudocode:

int x = 1;
int a[3] = { 2, 5, 3 };

void foo(int u, int v) {
v = a[x];
v = u * 9;
x = 2;
a[2] = u;
u = u – 2;
print u;
print v;
print x;
}
int main() {
foo(a[x], a[2]);
print x;
print a[0];
print a[1];
print a[2];
}

 

What is the output printed when this program is executed using call by value-result, respectively, call by macro expansion? Explain what happens in each case.

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more