Ho presentato la mia candidatura online. La procedura ha richiesto 3 giorni. Ho sostenuto un colloquio presso Convin (India) (Nuova Delhi)
Colloquio
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 .
Domande di colloquio [1]
Domanda 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?