Correct Answer: B. Find a subset whose sum is equal to a given number
Explanation:
The Subset-Sum problem specifically looks for a subset of numbers that adds up exactly to a target sum.
For example, given the set {3, 34, 4, 12, 5, 2} and target sum 9, the solution would be {4, 5}.
The problem doesn't require finding all subsets or maximizing the sum.