Python Lists

Python Lists

8th - 12th Grade

15 Qs

quiz-placeholder

Similar activities

Lists In Python_1

Lists In Python_1

9th Grade - University

15 Qs

Vocab Quiz #2

Vocab Quiz #2

6th - 8th Grade

10 Qs

8525 AQA  GCSE Computer Science 3.7.1 Relational databases

8525 AQA GCSE Computer Science 3.7.1 Relational databases

7th - 12th Grade

16 Qs

Ready Set Python 1 - Lists

Ready Set Python 1 - Lists

9th Grade

16 Qs

Python Lists and Strings

Python Lists and Strings

9th Grade

20 Qs

Loops, Lists, Traversals test

Loops, Lists, Traversals test

11th Grade

18 Qs

Code.org Unit 5 Vocab Quiz 1

Code.org Unit 5 Vocab Quiz 1

9th - 12th Grade

10 Qs

Access Tables Forms and Queries

Access Tables Forms and Queries

10th - 12th Grade

20 Qs

Python Lists

Python Lists

Assessment

Quiz

Computers

8th - 12th Grade

Medium

Created by

Nargas Khan

Used 125+ 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?