

MCQOPTIONS
Saved Bookmarks
1. |
Consider the recursive implementation to find the nth fibonacci number: Which line would make the implementation complete? |
A. | fibo(n) + fibo(n) |
B. | fibo(n) + fibo(n – 1) |
C. | fibo(n – 1) + fibo(n + 1) |
D. | fibo(n – 1) + fibo(n – 2)View Answer |
Answer» E. | |