Which of the following represents a recursive definition of the Fibonacci sequence using dynamic programming?
F(n) = F(n-1) + F(n-2)
F(n) = F(n-1) * F(n-2)
F(n) = min(F(n-1), F(n-2))
F(n) = max(F(n-1), F(n-2))

Data Structures and Algorithms Exercises are loading ...