Multiple Choice
What is the output of the following program?
L1 = [1, 2, 3, 4]
L2 = L1
L3 = L1.copy()
L4 = list(L1)
L1[0] = [5]
Print(L1, L2, L3, L4)
A) [5, 2, 3, 4] [5, 2, 3, 4] [1, 2, 3, 4] [1, 2, 3, 4]
B) [[5], 2, 3, 4] [[5], 2, 3, 4] [[5], 2, 3, 4] [1, 2, 3, 4]
C) [5, 2, 3, 4] [5, 2, 3, 4] [5, 2, 3, 4] [1, 2, 3, 4]
D) [[5], 2, 3, 4] [[5], 2, 3, 4] [1, 2, 3, 4] [1, 2, 3, 4]
Correct Answer:

Verified
Correct Answer:
Verified
Q38: What is the output of the following?<br>Def
Q39: What is the output of the following
Q40: What is the length of sys.argv?<br>A)number of
Q41: What is the output of the following
Q42: What data type is the object below?<br>L
Q44: What is the output of the following?<br>Elements
Q45: What is the output of the following
Q46: What is the output of the following
Q47: What is the type of each element
Q48: To read the entire remaining contents of