Complete this drag and drop activity to use the right computing terminology about If Statements, boolean operators and comparison operators.
equal to
False
comparison
elif
OR
!=
boolean
<=
- == and != are operators,
- == means “is ?”,
- means “is not equal to?”, aka “is different from?”
- Other comparison operators can be used in selection statements such as >, <, , >=,
- AND and are operators,
- The result of a comparison is a boolean, which means it is either True or ,
- In Python we can use the following three instructions: if, and else.