Quiz 6
3 points
15 minutes

Trace the evolution of
1: (+ (- 5 (* 2 3)) (/ 10 2))

2: (define (p x y) (if (= x 0) y (p (- x 1) (+ (* x x) y))))
   (p 4 0)

answers