Infomax Computer Academy
Report Bug
Qus :
What will be the output?
a = [1, 2, 3]
b = a
b.append(4)
print(a)
Qus
What will be the output?
a = [1, 2, 3]
b = a
b.append(4)
print(a)
A. [1, 2, 3]
B. [1, 2, 3, 4]
C. [4]
D. Error
Solution
B. [1, 2, 3, 4]
Report Bug
Select Reason
Wrong Question
Wrong Translation
Out of Topic
Wrong Answer
Question and Option not visible
Formatting Issues
Hindi Version Not Available
Explanation Required
Others