ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
The following sequence is a fibonacci sequence: 0, 1, 1, 2, 3, 5, 8, 13, 21,..... Which technique can be used to get the nth fibonacci term?
Correct Answer: D — Recursion, Dynamic Programming, For loops
Each of the above mentioned methods can be used to find the nth fibonacci term.