
Python Conditional statements
Authored by Batyr Zharkyn
Computers
KG
Used 23+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
7 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
1.How many possible values are there for a boolean variable?
0
1
2
3
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
2.Which of the following is not a comparison operator?
<=
?
!=
>
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
3.What does this Python expression evaluate to?
1000 != 1000
"False"
"True"
False
True
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
4.Which of the following is not a logical operator in Python?
or
and
not
because
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
5.What will print to the screen when the following program is run?
number = 20
greater_than_zero = number >10
print(type(number))
<class ‘bool’>
<class ‘int’>
20
10
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
6.What will be the output of this program?
number = 10
greater_than_zero = number > 5
if greater_than_zero:
print(number)
10
5
Nothing will print
True
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
7.What will be the output of this program?
number = 10
less_than_zero = number < 0
if less_than_zero:
print(number)
number = number-2
less_than_zero = number > 0
if less_than_zero:
print(number)
8
10
8
10
10
8
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?