Given the following grocery store orders:

If a query is made to the table with the following logic:
Order_Total > 132 OR (Order Total >= 25 AND Order_Total < 74)
Which of the following is the number of orders that will be returned by the query?
Correct Answer: C
Based on the query logic provided: Order_Total > 132 OR (Order Total >= 25 AND Order_Total < 74), we can manually determine which order totals fit this criteria. By examining the image, these are the Order_Total values that match:
* 132.49 (greater than 132)
* 108.99 (greater than or equal to 25 and less than 74)
* 96.19 (greater than or equal to 25 and less than 74)
* 74.49 (greater than or equal to 25 and less than 74)
* 41.99 (greater than or equal to 25 and less than 74)
* 31.29 (greater than or equal to 25 and less than 74)
Thus, six orders satisfy the given conditions.