21 slides
Here are some examples of logical tests. One of the values is missing. Fill in a missing value that makes each test True.
(7 * 6) < __
Here are some examples of logical tests. One of the values is missing. Fill in a missing value that makes each test True.
23 + 3 = __
Here are some examples of logical tests. One of the values is missing. Fill in a missing value that makes each test True.
400 / 50 > __
Here are some examples of logical tests. One of the values is missing. Fill in a missing value that makes each test True.
99.999 < ___
Here are some examples of logical tests. One of the values is missing. Fill in a missing value that makes each test True.
12.34 = __
Here are some logical tests using Python relational operators. Which are True and which are False?
4 == 5 – 1
Here are some logical tests using Python relational operators. Which are True and which are False?
55 >= 11 * 5
Here are some logical tests using Python relational operators. Which are True and which are False?
22 != 23 – 1
Here is a Python program.
The user entered the letter ‘X’. What is the output of the program?
What other output can there be from this program? When will you see this output?