Questions
Conceptual
What is the result of the following boolean expressions?
((not False) and True) == True
(not False) or (True and False)
True and (7 < 3 * 4 / 6)
(not False) != True
not(True and False) and (False or not False)
Solutions
Conceptual Solutions
True
True
False
False
True