Q. In the context of dynamic programming, what does the term 'memoization' refer to?
A.
Storing results of expensive function calls
B.
Sorting data for faster access
C.
Creating a tree structure for data storage
D.
Using a stack to manage function calls
Solution
Memoization refers to the technique of storing the results of expensive function calls and returning the cached result when the same inputs occur again.
Correct Answer:
A
— Storing results of expensive function calls