Python Logical Operators Quiz

Python Logical Operators Quiz

9th Grade

9 Qs

quiz-placeholder

Similar activities

The Ultimate C++ Quiz

The Ultimate C++ Quiz

5th Grade - Professional Development

7 Qs

Libel Quiz

Libel Quiz

9th - 10th Grade

10 Qs

Reported Speech B1/B1+

Reported Speech B1/B1+

9th - 11th Grade

10 Qs

L1 Your Data and You - 8.5 System Security

L1 Your Data and You - 8.5 System Security

7th - 9th Grade

10 Qs

Rights and Responsibilities of Student Journalists

Rights and Responsibilities of Student Journalists

9th - 12th Grade

10 Qs

Emergency Quiz

Emergency Quiz

KG - 12th Grade

7 Qs

Python - Mid-Assessment

Python - Mid-Assessment

9th Grade

14 Qs

Introductory Quiz

Introductory Quiz

9th - 12th Grade

10 Qs

Python Logical Operators Quiz

Python Logical Operators Quiz

Assessment

Quiz

Other

9th Grade

Medium

Created by

Emilio Gasca

Used 10+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a logical operator in Python?

A. and

B. or

C. not

D. because

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following conditions tell me to sleep if my alarm did not go off (alarm = False) and I’m tired (tired = True)?

A. if alarm and tired: sleep

B. if not alarm or tired: sleep

C. if not alarm and tired: sleep

D. if not alarm and not tired: sleep

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Assume you are writing a program, and you have a boolean variable called b, defined like so: b = True. Pick the correct if statement to follow the code above. The if statement should be correct Python, and the body of the if statement should only run if b is True.

A. if b: print("b is True!")

B. if b: print("b is True!")

C. if True: print(b)

D. if True: print(b)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following programs will run but will not print anything?

A. x = True if x: print("hi")

B. if False: print("hi")

C. x = False if x: print("hi") else: print("hello")

D. if True:

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following evaluates to the variable x rounded to two decimal places?

round(x, 2)

round(2, x)

round(x), 2

round(2), x

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following values is rounded to 3 decimal places?

2.3

3.000

3.0001

3

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does this Python expression evaluate to? 100 != 100

True

False

“True”

“False”

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a comparison operator?

<=

!=

?

>

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many possible values are there for a boolean variable?

1

2

3

There is an infinite number of possibilities.