Python Lists MCQs for Beginners

Python Lists MCQs for Beginners

University

49 Qs

quiz-placeholder

Similar activities

Python: Built-In Functions and Upto Tuple

Python: Built-In Functions and Upto Tuple

University

50 Qs

PY4E Finals

PY4E Finals

University

49 Qs

NRIT_Python_Quiz02

NRIT_Python_Quiz02

University

50 Qs

TECHNICAL QUIZ

TECHNICAL QUIZ

University

45 Qs

Plaza Computación / Programación

Plaza Computación / Programación

University

50 Qs

Sorting, Searching and Big O Review

Sorting, Searching and Big O Review

9th Grade - University

45 Qs

Komputer Akuntansi

Komputer Akuntansi

University

50 Qs

Python Lists MCQs for Beginners

Python Lists MCQs for Beginners

Assessment

Quiz

Computers

University

Medium

Created by

Ms. Lora

Used 1+ times

FREE Resource

49 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? my_list = [1, 2, 3, 4] print(my_list[2])

1

2

3

4

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following 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}

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? my_list = [10, 20, 30, 40, 50] print(my_list[1:4])

[10, 20, 30, 40]

[20, 30, 40]

[20, 30, 40, 50]

[30, 40]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of len([10, 20, 30])?

2

3

4

Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of this code? my_list = [1, 2, 3] my_list.append(4) print(my_list)

[1, 2, 3]

[1, 2, 3, 4]

[4, 1, 2, 3]

Error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function adds all elements from one list to another?

append()

extend()

insert()

add()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of: my_list = [1, 2, 3, 4] print(my_list[-1])

1

2

3

4

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?