Mastering Python Lists

Mastering Python Lists

10th Grade

10 Qs

quiz-placeholder

Similar activities

Y10 2.1

Y10 2.1

10th - 11th Grade

15 Qs

Unit 9 Test Review

Unit 9 Test Review

9th - 12th Grade

10 Qs

SmartArts

SmartArts

9th - 12th Grade

10 Qs

Computational Thinking in Python[Quiz 2]

Computational Thinking in Python[Quiz 2]

University

15 Qs

JS Practice Array & Function

JS Practice Array & Function

9th - 12th Grade

10 Qs

Python Data Types and Lists ( level easy )

Python Data Types and Lists ( level easy )

12th Grade

10 Qs

Functional Programming Quiz 2

Functional Programming Quiz 2

12th Grade

13 Qs

Python list starter

Python list starter

10th Grade - University

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