Consider a 'Customer Feedback' table with columns: 'CustomerID', 'ProductType', 'FeedbackScore' (1-5), 'DateSubmitted', 'ResolutionStatus' (Open/Closed). A manager wants to find all 'Open' feedback entries for 'ProductType B' submitted in the last month that have a 'FeedbackScore' of 2 or lower. From the dropdown lists for filtering options, select the two conditions that should be applied.
✓ Correct Answer: Option D
To meet the criteria, one filter must be 'ResolutionStatus = Open' and another must be 'FeedbackScore <= 2'. 'ProductType' and 'DateSubmitted' would also be applied but are not among the options given for the two conditions from the problem statement.