Question: In the context of dynamic programming, what does \'memoization\' refer to?
Options:
Correct Answer: Storing results of expensive function calls and reusing them
Solution:
Memoization is a technique used in dynamic programming to store the results of expensive function calls and reuse them when the same inputs occur again.