Candidatei-me online. O processo levou 3 dias. Fiz uma entrevista na empresa Convin (India) (Nova Deli).
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 .
Perguntas de entrevista [1]
Pergunta 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?