What is Boolean logic?
A form of algebra to help make decisions
A mathematical way of representing iteration
A mathematical way of representing sequence
What does Boolean logic use?
Functions
Expressions
Statements
How is 'equals' represented in Boolean logic?
!=
>=
=
How is 'equals to' represented in Python?
!==
==
How is 'greater than' represented in Boolean logic?
>
How is 'greater than or equal to' represented in Boolean logic?
What values does a Boolean expression have?
Yes or No
True or False
Right or Wrong
Which Boolean expression looks for either one or both results from two conditions to be True?
OR
NOT
AND
Which Boolean expression looks for the combined result of two conditions to be True?
Which Boolean expression checks if a condition is False?