Mastering Python Lists

Mastering Python Lists

10th Grade

10 Qs

quiz-placeholder

Similar activities

Python Ch 1

Python Ch 1

5th Grade - University

10 Qs

Python lists and tuples

Python lists and tuples

12th Grade

10 Qs

Python Basics

Python Basics

University

15 Qs

Python End of Topic Quiz

Python End of Topic Quiz

8th Grade - University

15 Qs

Λίστες Python

Λίστες Python

11th Grade

10 Qs

Python Lists

Python Lists

10th Grade

14 Qs

J277 - 2.2 - Random Number Generation

J277 - 2.2 - Random Number Generation

10th Grade - University

8 Qs

Python Lists

Python Lists

10th - 12th Grade

15 Qs

Mastering Python Lists

Mastering Python Lists

Assessment

Quiz

Computers

10th Grade

Hard

Created by

SHERRI OSTERBERG

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code snippet? ```python my_list = [1, 2, 3, 4, 5] print(my_list[2]) ```

1

2

3

4

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you slice a list to get all elements from the second position to the fourth position (inclusive)?

`my_list[1:4]`

`my_list[2:5]`

`my_list[1:5]`

`my_list[2:4]`

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of concatenating the following lists? ```python list1 = [1, 2, 3] list2 = [4, 5, 6] result = list1 + list2 ```

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

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

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

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

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method would you use to add an element to the end of a list?

`append()`

`insert()`

`extend()`

`add()`

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you remove the element 'cat' from the following list? ```python animals = ['dog', 'cat', 'bird'] ```

`animals.remove('dog')`

`animals.delete('cat')`

`animals.remove('cat')`

`animals.pop(1)`

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to sort a list named `numbers` in ascending order?

`numbers.sort(ascending=True)`

`sorted(numbers)`

`numbers.sort()`

`numbers.sorted()`

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How would you find the length of the list `fruits`?

`len(fruits)`

`fruits.len()`

`length(fruits)`

`fruits.length()`

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?