Me postulé en línea. El proceso tomó 3 días. Acudí a una entrevista en Convin (India) (Nueva Delhi)
Entrevista
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 .
Preguntas de entrevista [1]
Pregunta 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?