196k views
2 votes
8) What do the following programs print? Ishow the tables of variables in memory.

a)
def main() :
a = 5
b = 7
print (mystery (a, b))
def mystery (x, y) :
z = x + y
2 2 / 2.0
return z
main()
What does show the tables of variables in memory mean?

1 Answer

3 votes

Answer:

The output prints 12.

Step-by-step explanation:

User LJT
by
4.8k points