Question: In the context of dynamic programming, what does the term \'memoization\' refer to?
Options:
Correct Answer: Storing results of expensive 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.