SUPARN PATRA
Schools
Exams
Paths
Blog
Quizzes
Tools
Playground
About
Home
/
Quizzes
/
GATE DA
/
Programming, Data Structures & Algorithms, GATE DA Practice Quiz
GATE DA
Programming, Data Structures & Algorithms, GATE DA Practice Quiz
10 questions
Question 1 of 10
Score:
0
/ 0
What is the output of the following Python code? x = [1, 2, 3] y = x[:] y.append(4) print(len(x), len(y))
A
3 3
B
4 4
C
3 4
D
4 3
← Back to unit notes