you can structure more complex searches in quick search by using the boolean operators between rows in advanced search. let’s say you have two rows. row 1 says rabbits or pikas; row 2 says pikachu; the boolean operator between the rows is not. what would you expect the results of this search to contain?

Respuesta :

fichoh

Boolean operators are used to return True or False values after the evaluation of a certain condition or conditions. Hence, result of the search will contain true.

  • Boolean operators include AND, NOT, OR, AND NOT.

Row 1 = (rabbits OR pikas)

Row 2 = (Pikachu)

The boolean expression can be written thus :

(Row 1) NOT (Row 2)

(rabbits OR pikas) NOT (Pikachu)

The expression means that either Rabbit or Pikas is not Pikachu, which is true based on the string values.

Therefore, the expected result of the search will return True.

Learn more : https://brainly.com/question/25553664