Quiz (1 point)
Given that:
expression state at time 10 = "iterate_args"
arguments stack at time 10 = [ [ "John", [ "Smith", [ 25, [ ] ] ] ], [ ] ]
parent stack at time 10 = [
Person("John", "Smith", 25)
, [ ] ]Prove that:
parent stack at time 11 = [
Person("John", "Smith", 25)
, [ ] ]The following properties may be helpful:
- 10 + 1 = 11
if the following are true:
- expression state at time t = "iterate_args"
- arguments stack at time t = [ [ x, y ], z ]
then parent stack at time (t + 1) = parent stack at time t
if the following are true:
- a = b
- b = c
then a = c
if 10 + 1 = 11, then parent stack at time (10 + 1) = parent stack at time 11
if the following are true:
- a = b
- a = c
then b = c
Please write your proof in the table below. Each row should contain one claim. The last claim is the statement that you are trying to prove.