Python Logical Operators Quiz

Python Logical Operators Quiz

9th Grade

9 Qs

quiz-placeholder

Similar activities

Computer program introduction quiz

Computer program introduction quiz

9th - 12th Grade

13 Qs

GFRIEND

GFRIEND

KG - Professional Development

10 Qs

Production and Manufacturing

Production and Manufacturing

9th - 10th Grade

14 Qs

Rancho Library Quiz

Rancho Library Quiz

9th Grade

12 Qs

Icebreaker

Icebreaker

6th - 12th Grade

13 Qs

Promotion Techniques

Promotion Techniques

9th - 10th Grade

10 Qs

Pythton

Pythton

5th - 12th Grade

10 Qs

Piggy quiz

Piggy quiz

4th - 12th Grade

11 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.