Python Conditional Statements Quiz

Python Conditional Statements Quiz

7th Grade

36 Qs

quiz-placeholder

Similar activities

UH Materi Ms. Word

UH Materi Ms. Word

7th Grade - University

35 Qs

Инфо ЕНТ вариант -18

Инфо ЕНТ вариант -18

7th Grade

35 Qs

7 класс

7 класс

7th Grade - University

38 Qs

7 кл-06

7 кл-06

7th Grade - University

38 Qs

Ôn tập cuối kì I lớp 7 - 2024

Ôn tập cuối kì I lớp 7 - 2024

7th Grade

32 Qs

Sumatif TIK 7

Sumatif TIK 7

7th Grade

35 Qs

 SAS SEMESTER 2

SAS SEMESTER 2

7th Grade

40 Qs

青少年软件编程(Python-3)202206

青少年软件编程(Python-3)202206

7th Grade

38 Qs

Python Conditional Statements Quiz

Python Conditional Statements Quiz

Assessment

Quiz

Information Technology (IT)

7th Grade

Easy

Created by

Fadi Fadi

Used 1+ times

FREE Resource

36 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output? python Copy Edit x = 5 if x > 3: print("Yes") else: print("No")

Error

5

No

Yes

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is the correct way to write an if statement?

if > x 10:

if x > 10 then

if x > 10:

if (x > 10)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does this code print? python Copy Edit age = 10 if age >= 18: print("Adult") else: print("Child")

Adult

Error

Child

Teen

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to check a second condition?

else if

elif

then

elseif

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result? python Copy Edit x = 7 if x % 2 == 0: print("Even") else: print("Odd")

7

Error

Odd

Even

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement is true about if statements?

if must be written in uppercase

if must end with a colon :

if must include else

if must be the last line

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be printed? python Copy Edit score = 85 if score > 90: print("A") elif score > 80: print("B") else: print("C")

B

C

85

A

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?