Exploring Python Lists

Exploring Python Lists

9th Grade

16 Qs

quiz-placeholder

Similar activities

Python Arrays

Python Arrays

9th - 10th Grade

11 Qs

AP Computer Science Principles Lists

AP Computer Science Principles Lists

9th - 12th Grade

20 Qs

CS Python Fundamentals Test 9 PRACTICE

CS Python Fundamentals Test 9 PRACTICE

9th - 12th Grade

20 Qs

AP CSP Code.org Unit 6

AP CSP Code.org Unit 6

9th - 12th Grade

17 Qs

Unit 6 AP CSP

Unit 6 AP CSP

9th - 12th Grade

17 Qs

Unit 6: Loops and Traversals Test

Unit 6: Loops and Traversals Test

9th - 12th Grade

17 Qs

Code.org Unit 6 - Lists

Code.org Unit 6 - Lists

9th - 12th Grade

12 Qs

6. Python (списки)

6. Python (списки)

5th - 9th Grade

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