Python Basics Quiz

Python Basics Quiz

8th Grade

34 Qs

quiz-placeholder

Similar activities

Clasa VIII

Clasa VIII

8th Grade

30 Qs

Quizz Python 2

Quizz Python 2

6th - 8th Grade

30 Qs

Informatika Kelas 8 - Berpikir Komputasional

Informatika Kelas 8 - Berpikir Komputasional

8th Grade

39 Qs

Berpikir Komputasi, sist bilangan, algoritma, strukt data

Berpikir Komputasi, sist bilangan, algoritma, strukt data

8th Grade

30 Qs

SOAL INFORMATIKA KELAS 8 GANJIL

SOAL INFORMATIKA KELAS 8 GANJIL

8th Grade

35 Qs

7 класс

7 класс

7th Grade - University

38 Qs

8 класс цикл

8 класс цикл

8th Grade - University

37 Qs

Python Basics Quiz for Year 9

Python Basics Quiz for Year 9

8th Grade

30 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?