Python Lists

Python Lists

8th - 12th Grade

15 Qs

quiz-placeholder

Similar activities

AP Computer Science Principles - Unit 5: Lists, Loops

AP Computer Science Principles - Unit 5: Lists, Loops

9th - 12th Grade

10 Qs

Database

Database

9th Grade

20 Qs

Merge Sort

Merge Sort

10th Grade

14 Qs

Unit 6 Vocabulary

Unit 6 Vocabulary

10th - 12th Grade

10 Qs

AP CSP Unit 5 Review: Lists, Loops and Traversals

AP CSP Unit 5 Review: Lists, Loops and Traversals

9th - 12th Grade

19 Qs

Loops, Lists, Traversals test

Loops, Lists, Traversals test

11th Grade

20 Qs

Unit 5 Quiz - Loops & Lists (code.org)

Unit 5 Quiz - Loops & Lists (code.org)

10th - 12th Grade

20 Qs

Small Basic Week 10 (Mod 3.2) Pre-Quiz

Small Basic Week 10 (Mod 3.2) Pre-Quiz

7th - 8th Grade

10 Qs

Python Lists

Python Lists

Assessment

Quiz

Computers

8th - 12th Grade

Medium

Created by

Nargas Khan

Used 123+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Data Structures are used to group multiple items?

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many values can a variable store?

4

11

456743

1

3.

OPEN ENDED QUESTION

3 mins • 1 pt

Why would you use lists in a program instead of variables?

Evaluate responses using AI:

OFF

Answer explanation

You would use lists in a program instead of a variable when you have more than one value to store and it can be grouped together. It is also more efficient to use a list. It is much better to group the values together in a single variable (list). That is what data structure is - an organised collection of Items.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which brackets are used to create Lists?

()

{}

[]

Answer explanation

Lists are created using square brackets and have commas separating the different data values.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Spot the error in this program:

friends = Alice", "Bob","Liz"]

friends =

"Bob",

"Liz"]

Alice"

Answer explanation

friends = ["Alice", "Bob","Liz"]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does .append () do?

To add a new item to a specified position in the list.

To delete the item specified.

To find the index of a specific item.

To add a new item to the end of the list.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does .insert() do?

To find the index of a specific item.

To delete the item specified.

To add a new item to a specified position in the list.

To find the index of a specific item.

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?