Python Conditional Statements Quiz

Python Conditional Statements Quiz

7th Grade

36 Qs

quiz-placeholder

Similar activities

ESTRUCTURA SCRATCH

ESTRUCTURA SCRATCH

7th Grade - University

32 Qs

Quiz Pengetahuan Komputer

Quiz Pengetahuan Komputer

7th Grade

35 Qs

Soal Ujian Informatika Kelas VII

Soal Ujian Informatika Kelas VII

7th Grade

40 Qs

Chapter 20 - Cash Flow Forecasting and Management Quiz

Chapter 20 - Cash Flow Forecasting and Management Quiz

6th Grade - University

32 Qs

INFORMATIKA 7 GENAP

INFORMATIKA 7 GENAP

7th Grade

40 Qs

Quiz Analisis Data di Excel

Quiz Analisis Data di Excel

7th Grade

31 Qs

ASTS TIK 5 GENAP

ASTS TIK 5 GENAP

5th Grade - University

35 Qs

Ujian Akhir TIK Kelas V

Ujian Akhir TIK Kelas V

5th Grade - University

40 Qs

Python Conditional Statements Quiz

Python Conditional Statements Quiz

Assessment

Quiz

Information Technology (IT)

7th Grade

Easy

Created by

Fadi Fadi

Used 2+ 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?