Python Conditional statements

Python Conditional statements

KG

7 Qs

quiz-placeholder

Similar activities

Unit 6 Review

Unit 6 Review

9th - 12th Grade

11 Qs

Python

Python

KG

11 Qs

Python Basics

Python Basics

6th Grade - University

10 Qs

Python Testing

Python Testing

9th - 12th Grade

10 Qs

Dasar Pemrograman C++

Dasar Pemrograman C++

10th Grade

10 Qs

Quiz 7

Quiz 7

University

11 Qs

Teste python- Unesp-Jaboticabal

Teste python- Unesp-Jaboticabal

University

10 Qs

Basic Python Programming_Class VIII

Basic Python Programming_Class VIII

8th Grade

10 Qs

Python Conditional statements

Python Conditional statements

Assessment

Quiz

Computers

KG

Hard

Created by

Batyr Zharkyn

Used 23+ times

FREE Resource

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