Python Lists

Python Lists

7th - 11th Grade

9 Qs

quiz-placeholder

Similar activities

Personal Data and Information

Personal Data and Information

7th - 10th Grade

10 Qs

An IT trip through the Ciutadella Park.

An IT trip through the Ciutadella Park.

1st Grade - Professional Development

10 Qs

Software developement cycle

Software developement cycle

9th - 12th Grade

11 Qs

Grade 7 ICT Midterm

Grade 7 ICT Midterm

7th Grade

10 Qs

iMedia Documents

iMedia Documents

8th - 12th Grade

14 Qs

Python Array

Python Array

9th - 12th Grade

8 Qs

1.2 Images

1.2 Images

9th - 10th Grade

14 Qs

Quiz

Quiz

8th Grade

10 Qs

Python Lists

Python Lists

Assessment

Quiz

Computers

7th - 11th Grade

Medium

Created by

M Duce

Used 161+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is a list?

fruit = ["apples", "oranges", "bananas"]

fruit = "apples", "oranges", "bananas"

fruit = {"apples", "oranges", "bananas"}

fruit = ("apples", "oranges", "bananas")

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you want to create an empty list called colours, which of the following pieces of code is correct?

colours = { }

colours = ( )

colours = [ ]

colors = [ ]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Each item in a list has an "address" or index. The first index in a Python list is what?

1

0

a

A

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the position of the name 'Paula' in the following list:
names = ["Paul","Phillip","Paula","Phillipa"]
0
1
2
3

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the position of the name "Robert" in the following list:

0

1

2

3

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What output will this code produce?

['France', 'Wales', 'England']

France

France Wales England

France

France, Wales, England

Wales

['France', 'Wales', 'England']

Wales

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a list called "players", if you wanted to add a player called "Bob" to the list, which of the following examples of code would be correct?
players.add("Bob")
player.append("Bob")
players.append("Bob")
players.addend("Bob")

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the APPEND procedure do in the following code:

Adds Liverpool to the beginning of the list

Replaces Bristol with Liverpool

Replaces Manchester with Liverpool

Adds Liverpool to the end of the list

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In programming, lists are often known as...

Arrays

Elements

Indexes

Data