IDNLearn.com makes it easy to find answers and share knowledge with others. Get thorough and trustworthy answers to your queries from our extensive network of knowledgeable professionals.

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?
i. (genre = "talk") AND ((day = "Saturday") AND (day = "Sunday"))
ii. (genre = "talk") AND ((day = "Saturday") OR (day = "Sunday"))
iii. (genre = "talk") OR ((day = "Saturday") AND (day = "Sunday"))
iv. (genre = "talk") OR ((day = "Saturday") OR (day = "Sunday"))


Sagot :

Answer:

ii. (genre = "talk") AND ((day = "Saturday") OR (day = "Sunday"))

Explanation:

it feels like the right answer to choose, i may not be an expert but this is what i feel like the answer is.

Thank you for being part of this discussion. Keep exploring, asking questions, and sharing your insights with the community. Together, we can find the best solutions. IDNLearn.com is dedicated to providing accurate answers. Thank you for visiting, and see you next time for more solutions.