Search Header Logo

Exploring Python Lists

Authored by Vanessa Calhoun

Computers

9th Grade

DOK Level 1: Recall covered

Used 1+ times

Exploring Python Lists
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?