Python Basics Quiz

Python Basics Quiz

8th Grade

34 Qs

quiz-placeholder

Similar activities

Karel Adventures 1 Review

Karel Adventures 1 Review

6th - 8th Grade

34 Qs

8-кл-19

8-кл-19

8th Grade - University

39 Qs

ICT Starter

ICT Starter

6th - 8th Grade

30 Qs

Python Basics Quiz for Year 9

Python Basics Quiz for Year 9

8th Grade

30 Qs

Python Assessment

Python Assessment

8th Grade

31 Qs

7-20

7-20

7th Grade - University

38 Qs

Python Basics: Loops and Formatting

Python Basics: Loops and Formatting

8th Grade

30 Qs

8кл-18

8кл-18

8th Grade

35 Qs

Python Basics Quiz

Python Basics Quiz

Assessment

Quiz

Information Technology (IT)

8th Grade

Hard

Created by

Fadi Fadi

Used 2+ times

FREE Resource

34 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does this code print? x = 10 if x > 5: print("Big") else: print("Small")

Small

Big

Error

10

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following correctly uses elif?

if x 5: print("Greater than 5") elif x == 3: print("Exactly 3") else: print("Other")

Greater than 5

Exactly 3

Other

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword ends an if...elif... block?

switch

for

else

end

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does this code print? x = 10 if x > 5: print("Hi") print("Bye")

Hi

Hi Bye

Bye

Nothing

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens if no if or elif condition is true and there is no else?

It crashes

It runs anyway

Nothing happens

It prints None

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is NOT a valid use of if?

if x:

if x == 10:

if x = 10:

if x != 5:

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Fill in the blank: if temperature > 30: print("Hot") _____ temperature = 8?

True

False

Error

None

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?