Python Lists MCQs for Beginners

Python Lists MCQs for Beginners

University

49 Qs

quiz-placeholder

Similar activities

GNU Debugger Quiz

GNU Debugger Quiz

University

50 Qs

CPSC 131 midterm review

CPSC 131 midterm review

University

45 Qs

Python бағдарламалау негіздері

Python бағдарламалау негіздері

University

50 Qs

ASAT TIK Kelas 5 TA 2024/2025

ASAT TIK Kelas 5 TA 2024/2025

5th Grade - University

50 Qs

PHP Quiz (CO1, CO2)

PHP Quiz (CO1, CO2)

University

50 Qs

Latihan Pra UTS Algoritma dan Pemrograman 2 (Python)

Latihan Pra UTS Algoritma dan Pemrograman 2 (Python)

University

50 Qs

Python El Grand Revision!

Python El Grand Revision!

University

47 Qs

Play with Python

Play with Python

University

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