MCQ Single Best Answer Easy

QWhat is the space complexity of the dynamic programming algorithm for computing the nth Fibonacci number using memoization?

ID: #5721 Dynamic Programming 160 views
Question Info
#5721Q ID
EasyDifficulty
Dynamic ProgrammingTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A O(1)
  • B O(log n)
  • C O(n)
  • D O(n^2)
Correct Answer: Option C

Explanation

Answer: O(n)

Explanation: The dynamic programming algorithm for computing the nth Fibonacci number using memoization has a space complexity of O(n) because it involves storing the solutions to n subproblems in memory.

Share This Question

Challenge a friend or share with your study group.