5.21 Assuming the following pseudocode for the Fibonacci series, what is the value of fibonacci(5)? fibonacci(0) fibonac
Posted: Mon Jun 06, 2022 6:21 pm
5.21 Assuming the following pseudocode for the Fibonacci series, what is the value of fibonacci(5)? fibonacci(0) fibonacci(1) = 0 = 1 fibonacci(n) = fibonacci(n-1) + fibonacci(n - 2) (a) 8 (b) 1 (c) 3 (d) 5 ANS: (d)