9.1.2 - Starter Quiz

9.1.2 - Starter Quiz

7th - 11th Grade

14 Qs

quiz-placeholder

Similar activities

Python for Class 7

Python for Class 7

7th - 8th Grade

11 Qs

Python

Python

7th - 8th Grade

13 Qs

Python - Quiz

Python - Quiz

9th - 11th Grade

17 Qs

Python - Printing, Variables and Syntax

Python - Printing, Variables and Syntax

8th Grade

10 Qs

Python KS3

Python KS3

8th Grade

17 Qs

Introduction to Python

Introduction to Python

9th Grade

10 Qs

Python Iteration

Python Iteration

10th Grade

13 Qs

Hangman Game - Programming Questions

Hangman Game - Programming Questions

7th - 11th Grade

15 Qs

9.1.2 - Starter Quiz

9.1.2 - Starter Quiz

Assessment

Quiz

Computers

7th - 11th Grade

Hard

Created by

A Colley

Used 45+ times

FREE Resource

14 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

subjects = ["Computing", "Drama", "English", "Maths", "Science", "Spanish"]

What is subjects [2]

Computing

English

Science

Drama

Index Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

subjects = ["Computing", "Drama", "English", "Maths", "Science", "Spanish"]

What is subjects [4]

Maths

English

Science

Drama

Index Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

subjects = ["Computing", "Drama", "English", "Maths", "Science", "Spanish"]

What would print out if I used the statement:

print(subjects[0])

Spanish

Computing

"Computing"

"Spanish"

Index Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What would be the output of the code below:

laurions = ["Altius", "Citius", "Fortius", "Magnus"]

print(laurions[1])

Fortius

Altius

Magnus

Citius

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What would be the output of the code below:

laurions = ["Altius", "Citius", "Fortius", "Magnus"]

print(laurions[3] + " beat " + laurions[2])

Error

Fortius beat Citius

Magnus beat Fortius

Magnus beat Citius

Fortius beat Magnus

6.

MULTIPLE SELECT QUESTION

45 sec • 5 pts

laurions = ["Altius", "Citius", "Fortius", "Magnus"]

starterLaurion = input("Who would you like to choose as your starter Laurion?")

What, in the code above, is a variable?

Fortius

Nothing

Citius

laurions

starterLaurion

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

buggy_list = [ ,"ugh!", ,"this","list", ,"is","buggy"]

print(buggy_list[3])

What would the code above output?

ugh

this

list

is

error

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?