I applied online. The process took 3 days. I interviewed at Convin (India) (New Delhi)
Interview
IN 2023 mid, They gave me an assignment, I completed it then came technical interview I practiced hard question interviewer ask simple python questions that are somewhat try, even though didn't get selected still liked the interview process .
Interview questions [1]
Question 1
In python asked me,
L1 = [1,2,3,4]
L2 = L1
L3 = L2.copy()
L2[0] = [5]
print(L1,L2,L3)
What will be the answer?