A student wants to count the number of shows that meet both of the following criteria.
Is a talk show
Is on Saturday or Sunday
For a given row in the spreadsheet, suppose genre contains the genre as a string and day contains the day as a string. Which of the following expressions will evaluate to true if the show should be counted and evaluates to false otherwise?
A. (genre = “talk”) AND ((day = “Saturday”) AND (day = “Sunday”))
B. (genre = “talk”) AND ((day = “Saturday”) OR (day = “Sunday”))
C. (genre = “talk”) OR ((day = “Saturday”) AND (day = “Sunday”))
D. (genre = “talk”) OR ((day = “Saturday”) OR (day = “Sunday”))