Python Lists

Python Lists

8th - 12th Grade

15 Qs

quiz-placeholder

Similar activities

ICT-CE-Chapter 1

ICT-CE-Chapter 1

6th - 8th Grade

12 Qs

Java 2 Quiz 9

Java 2 Quiz 9

10th - 12th Grade

20 Qs

ICT

ICT

9th Grade

12 Qs

PowerShell and Windows Server

PowerShell and Windows Server

12th Grade - Professional Development

10 Qs

Python List

Python List

4th Grade - University

15 Qs

LIST IN PYTHON

LIST IN PYTHON

8th - 10th Grade

15 Qs

GCSE Computing: Lists and Arrays

GCSE Computing: Lists and Arrays

10th - 11th Grade

15 Qs

Searching & Sorting Algorithms

Searching & Sorting Algorithms

10th Grade - University

16 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?