Exploring Python Lists

Exploring Python Lists

9th Grade

16 Qs

quiz-placeholder

Similar activities

AP CSP Unit 5

AP CSP Unit 5

9th - 12th Grade

20 Qs

Code.org APCSP Unit 5 Assessment

Code.org APCSP Unit 5 Assessment

9th - 12th Grade

20 Qs

AP CSP Unit 5 Review: Lists, Loops and Traversals

AP CSP Unit 5 Review: Lists, Loops and Traversals

9th - 12th Grade

19 Qs

Python Arrays

Python Arrays

9th - 12th Grade

13 Qs

Python Lists v2

Python Lists v2

9th - 12th Grade

15 Qs

Python List

Python List

4th Grade - University

15 Qs

2D Arrays

2D Arrays

9th - 12th Grade

15 Qs

Unit 7 - ArrayList - Test Review

Unit 7 - ArrayList - Test Review

9th - 12th Grade

12 Qs

Exploring Python Lists

Exploring Python Lists

Assessment

Quiz

Computers

9th Grade

Easy

DOK Level 1: Recall, DOK Level 2: Skill/Concept, DOK Level 3: Strategic Thinking

Standards-aligned

Created by

Vanessa Calhoun

Used 1+ times

FREE Resource

16 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to access the first element in the list `my_list = [10, 20, 30, 40, 50]`?

`my_list[0]`

`my_list[1]`

`my_list[-1]`

`my_list[5]`

Tags

DOK Level 1: Recall

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the `append` method do in Python lists?

Adds an element to the end of the list

Adds an element at a specified index

Removes the first occurrence of a specified value

Removes the last element of the list

Tags

DOK Level 1: Recall

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following list slicing operation: `my_list = [1, 2, 3, 4, 5]; my_list[2:5]`?

`[1, 2, 3]`

`[2, 3, 4]`

`[3, 4, 5]`

`[2, 3, 4, 5]`

Tags

DOK Level 2: Skill/Concept

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method would you use to remove an element at a specified index in a list?

`remove()`

`pop()`

`del`

`clear()`

Tags

DOK Level 1: Recall

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet? ```python my_list = [1, 2, 3, 4, 5] my_list.pop(2) print(my_list) ```

`[1, 2, 3, 4, 5]`

`[1, 2, 4, 5]`

`[1, 3, 4, 5]`

`[2, 3, 4, 5]`

Tags

DOK Level 2: Skill/Concept

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given the list `numbers = [10, 20, 30, 40, 50]`, write a Python code snippet to replace the second element with 25.

`numbers[1] = 25`

`numbers[2] = 25`

`numbers.insert(1, 25)`

`numbers.append(25)`

Tags

DOK Level 3: Strategic Thinking

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following list slicing operation: `my_list = [1, 2, 3, 4, 5]; my_list[:3]`?

`[1, 2, 3]`

`[2, 3, 4]`

`[3, 4, 5]`

`[1, 2, 3, 4]`

Tags

DOK Level 1: Recall

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?