Python Lists

Python Lists

10th - 12th Grade

15 Qs

quiz-placeholder

Similar activities

Lists in Python

Lists in Python

11th - 12th Grade

20 Qs

Python Review

Python Review

9th - 12th Grade

16 Qs

Python: Using Lists incl 2D

Python: Using Lists incl 2D

10th Grade

20 Qs

Lists in Python

Lists in Python

11th Grade

20 Qs

Python List

Python List

4th Grade - University

15 Qs

9.3 L3 Python Lists

9.3 L3 Python Lists

7th - 10th Grade

10 Qs

Python List Operations

Python List Operations

10th Grade

13 Qs

list in python

list in python

12th Grade

19 Qs

Python Lists

Python Lists

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

Louise Lockwood

Used 152+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is the best description of a list in Python?

A list is a collection of data that has an order and can be changed

A list is a lot of variables

A list is used for shopping

A list is a collection of data that cannot hold duplicated data and cannot be changed

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is the correct code for creating a list of names?

nameList = John, Harry, Jesse, John, Harry, Harry

nameList = ("John", "Harry", "Jesse", "John", "Harry", "Harry")

nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]

nameList = [John, Harry, Jesse, John, Harry, Harry]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

List items have an index number. In the following list, which item has the index number of 3?

["John", "Harry", "Jesse", "John", "Harry", "Harry"]

"John"

"Harry"

"Jesse"

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these pieces of code would return the name "Harry" from the following list?

nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]

nameList()

nameList[1]

NameList(4)

nameList["4"]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The list needs one more name added to the end - "Felipe". Which piece of code below would do this?

nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]

nameList.append(Felipe)

append(nameList,"Felipe")

nameList.append["Felipe",7]

nameList.append("Felipe")

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of program below?


bicycles = ['trek', 'cannondale', 'redline', 'specialized']

print(bicycles[-1])

trek

cannondale

redline

specialized

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of program below?


motorcycles = ['honda', 'yamaha', 'suzuki']

motorcycles[0] = 'ducati'

print(motorcycles)

['honda', 'yamaha', 'suzuki']

['ducati', 'yamaha', 'suzuki']

['honda', 'yamaha', 'suzuki', 'ducati']

['ducati', 'honda', 'yamaha', 'suzuki']

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?