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
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
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.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic