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) |
| Answer» E. | |