Question: Consider the following Scheme program: (define (foo n) (if (= n 0) 0 (+ (foo (- n 1)) (foo (- n 1))))) When we evaluate
Consider the following Scheme program:
(define (foo n) (if (= n 0) 0 (+ (foo (- n 1)) (foo (- n 1)))))
When we evaluate (foo 5), how many times is foo called in total?
|
| |
| 32 | |
|
| |
| 64 | |
| 63 | |
| 5 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
