GCSE Python Legends

GCSE Python Legends

1st - 12th Grade

45 Qs

quiz-placeholder

Similar activities

Python Assessment 1

Python Assessment 1

7th - 9th Grade

40 Qs

Bài tập python cơ bản

Bài tập python cơ bản

9th - 12th Grade

41 Qs

Term3 - Gerade 5 - Revision

Term3 - Gerade 5 - Revision

5th Grade

42 Qs

python

python

7th Grade

40 Qs

Edx GCSE Python

Edx GCSE Python

11th Grade

40 Qs

Python

Python

10th Grade

40 Qs

Python Introduction - Assessment

Python Introduction - Assessment

9th Grade

40 Qs

Python Quiz

Python Quiz

7th - 12th Grade

50 Qs

GCSE Python Legends

GCSE Python Legends

Assessment

Quiz

Computers

1st - 12th Grade

Medium

Created by

D Hesketh

Used 46+ times

FREE Resource

45 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What has been created here?


Sport = ["Football","Rugby","Tennis","Netball","Quidditch"]

An Array / List

A Loop

A Value

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many elements exist in here?


Sport = ["Football","Rugby","Tennis","Netball","Quidditch"]

5

4

6

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the highest index value here?


Sport = ["Football","Rugby","Tennis","Netball","Quidditch"]

4

5

6

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the range of indexes for the elements here?


Sport = ["Football","Rugby","Tennis","Netball","Quidditch"]

0 - 4

1 - 5

0 - 5

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do we add another new sport in to here at the end?


Sport = ["Football","Rugby","Tennis","Netball","Quidditch"]

Sport.append("Swimming")

Sport = "Swimming"

Sport[1] = "Swimming"

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do we print "Tennis" to the display?


Sport = ["Football","Rugby","Tennis","Netball","Quidditch"]

print(Sport[2])

print(Sport[3])

print(Sport)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do we print "Quidditch" to the display?


Sport = ["Football","Rugby","Tennis","Netball","Quidditch"]

print (Sport[4])

print (Sport[3])

print (Sport[5])

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?