Search Header Logo

Mastering Python Lists Quiz

Mathematics

12th Grade

Used 1+ times

Mastering Python Lists Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to create a list in Python?

`list = (1, 2, 3)`

`list = [1, 2, 3]`

`list = {1, 2, 3}`

`list = <1, 2, 3>`

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you access the third element in a list named `my_list`?

`my_list[2]`

`my_list[3]`

`my_list[1]`

`my_list[-1]`

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following methods is used to add an element to the end of a list?

`list.add()`

`list.append()`

`list.insert()`

`list.extend()`

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

3

4

5

6

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you remove the element at index 2 from a list named `my_list`?

`my_list.remove(2)`

`my_list.pop(2)`

`my_list.delete(2)`

`my_list.clear(2)`

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? ```python my_list = [10, 20, 30, 40] print(my_list[1:3]) ```

`[10, 20, 30]`

`[20, 30, 40]`

`[20, 30]`

`[30, 40]`

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements is true about lists in Python?

Lists are immutable.

Lists can contain elements of different data types.

Lists are unordered collections.

Lists do not allow duplicate elements.

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?