Study online at https://quizlet.com/_f63pvi
1. the logical expression that is evaluated to true and preceded by the not
logical operator results in a ______ value: false
2. if the logical expression of the IF ...ELSE statement is evaluated to true then
_____: the IF code block is executed
3. the logical expression connected with the OR logical operator returns _____
if any of the logical expression evaluated to true: true
4. the logical expression connected with an AND logical operator returns
_____ if all logical expressions evaluate to true: true
5. which of the following operations is NOT a comparison operator?: =
6. if multiple logical expressions need to be evaluated then a _____statement
is recommended: IF ...ELIF ... ELSE
7. the else part of the IF ...ELSE statement is _____: optional
8. what is the purpose of the IF ...ELSE statement in Python?: to control the flow
of the logic in a program
9. comparison operators can be used within the logical expression of the IF
...ELSE statement. The < operator reads as _____: less than
10. comparison operators can be used within the logical expression of the IF
...ELSE statement. The != operator reads as _____: not equal to
11. an IF ...ELSE statement is used to pram a programming: decision
12. logical operators can be used to _____: combine two or more logical expres-
sions
13. the IF ...ELSE statement determines which code block is executed depend-
ing on the value of a _____: logical expression
14. the IF ...ELSE statement is used in _____: decision making and flow control
1/1