Python: Condition

Python: Condition

8th Grade

9 Qs

quiz-placeholder

Similar activities

Lesson 11 - Iterative statements

Lesson 11 - Iterative statements

5th - 8th Grade

10 Qs

Lesson 10 - Decision control statements

Lesson 10 - Decision control statements

5th - 8th Grade

10 Qs

Binary - Logical Shifts

Binary - Logical Shifts

8th - 10th Grade

12 Qs

Helllo Python

Helllo Python

7th - 9th Grade

10 Qs

Quizizz

Quizizz

3rd Grade - Professional Development

10 Qs

Vocabulary Unit 9

Vocabulary Unit 9

8th Grade

11 Qs

Nested conditions

Nested conditions

8th - 9th Grade

10 Qs

Python-8CB

Python-8CB

8th Grade

10 Qs

Python: Condition

Python: Condition

Assessment

Quiz

Education

8th Grade

Medium

Created by

Zh L

Used 5+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the issue with the following code?

If condition will never be fulfil

print cannot be use multiple times

age is always lesser or equals to 18

Printing conflicting statement,, should have an else statement

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the issue with the following code?

age 18 should already be an adult

no if statement, compile error SyntaxError

missing elif statement

invalid print statement within else condition

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the issue with the following code?

SyntaxError, missing " : " at if statement condition

should be elif instead of else

missing condition after else

age is an invalid variable

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the issue with the following code?

score should be 100 instead of 20

print statement is not a valid function

NameError, age is not definied

age will never be more than or equals to score

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the issue with the following code?

missing else condition

should use elif instead of else

SyntaxError, we are not allows to use and operator

Logical error, condition "sale > 20 and sale < 20" will never be fulfilled

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the issue with the following code?

SyntaxError, invalid condition

NameError, variable sale is not defined

Logical error, sale will never be more than 20

Logical error. condition "sale >= 20 or sale <= 20" will always fulfilled

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the issue with the following code?

LogicalError,

If temperature is 36, it means that there is a heatwave!

SyntaxError,

Cannot use assignment(=) operator in the if condition

NameError, temperature is using the wrong data type

LogicalError,

else condition might not means that it is good weather

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the issue with the following code?

SyntaxError,

Missing elif statement

NameError,

temperature should be named as temp instead

LogicalError,

The temperate is above 20 degree will always be printed

NameError,

Temperature is spelled wrongly in the last print statement

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the issue with the following code?

NameError,

True is a reserved word and cannot be use

SyntaxError,

If statement requires a condition rather than True

LogicalError,

Last print statement will always be printed

LogicalError,

The else statement will never be printed