ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Choose the recursive formula for the Fibonacci series.(n>=1)
(F(n) = F(n+1) + F(n+2))
(F(n) = F(n) + F(n+1))
(F(n) = F(n-1) + F(n-2))
(F(n) = F(n-1) - F(n-2))
Correct Answer: C — \(F(n) = F(n-1) + F(n-2)\)
None.