Which of the following statements creates an empty list?

MCQ Questions- List

Quiz
•
Computers
•
University
•
Medium
JENEFA NAVEEN
Used 3+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
a) list1 = []
b) list1 = ()
c) list1 = {}
d) list1 = [None]
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the result of the following code snippet?
list1 = [1, 2, 3, 4, 5]
list1[1:4] = [8, 9, 10]
print(list1)
a) [1, 2, 3, 4, 5]
b) [1, 8, 9, 10, 5]
c) [1, 8, 9, 10, 4, 5]
d) [1, 8, 9, 10]
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following methods returns the number of times a specified element appears in the list?
a) append()
b) count()
c) index()
d) remove()
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following code?
list1 = [1, 2, 3]
list2 = [4, 5, 6]
list3 = list1 + list2
print(len(list3))
6
7
8
9
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following methods removes and returns the last element of a list?
a) pop()
b) remove()
c) del()
d) clear()
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following code?
list1 = [1, 2, 3, 4]
list2 = list1.copy()
list1[1] = 5
print(list2)
a) [1, 2, 3, 4]
b) [1, 5, 3, 4]
c) [1, 5, 3, 4, 5]
d) [1, 2, 5, 4]
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following methods reverses the order of the elements in a list?
a) sort()
b) reverse()
c) pop()
d) index()
Create a free account and access millions of resources
Similar Resources on Quizizz
10 questions
Python Round 2

Quiz
•
University
10 questions
2-列表与元组

Quiz
•
University
10 questions
Списки Python + Pygame

Quiz
•
KG - University
10 questions
Basic python

Quiz
•
University
10 questions
Python Quiz-8

Quiz
•
University
10 questions
Struktur Data

Quiz
•
University
11 questions
C4M2-S7-J1-ListsetTuples

Quiz
•
University
15 questions
ARRAYLIST - JAVA

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade