Edit Game
Boolean Expressions
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   9  Close
Define the term "boolean variable."
A variable whose data type is Boolean, meaning it can only store a True or False value.
True or False? All relational operators return a Boolean result.
True
Are these two expressions logically equivalent?
Yes
Are these two expressions logically equivalent:
No
Suppose A is False and B is False. Evaluate ((not(A)) and (not(B)))
True
Suppose A is False and B is False. Evaluate ((not(A)) or (not(B)))
True
Suppose A is True and B is False. Evaluate ((not(A)) or B)
False
Suppose A = True and B = False. Evaluate A or B.
True
Suppose A = True and B = False. Evaluate A and B.
False