Game Preview

Boolean Expressions

  •  English    9     Public
    Test your Knowledge of Boolean Expressions
  •   Study   Slideshow
  • Suppose A = True and B = False. Evaluate A and B.
    False
  •  10
  • Suppose A = True and B = False. Evaluate A or B.
    True
  •  10
  • Suppose A is True and B is False. Evaluate ((not(A)) or B)
    False
  •  15
  • Suppose A is False and B is False. Evaluate ((not(A)) or (not(B)))
    True
  •  15
  • Suppose A is False and B is False. Evaluate ((not(A)) and (not(B)))
    True
  •  15
  • Are these two expressions logically equivalent:
    No
  •  15
  • Are these two expressions logically equivalent?
    Yes
  •  15
  • True or False? All relational operators return a Boolean result.
    True
  •  15
  • Define the term "boolean variable."
    A variable whose data type is Boolean, meaning it can only store a True or False value.
  •  15