Ho presentato la mia candidatura online. La procedura ha richiesto una settimana. Ho sostenuto un colloquio presso Alphawave Semi (Toronto, ON) nel mese di mag 2025
Colloquio
Starts with overview brief questions about applicant i.e. current/past work experience. Then interviewer describes role responsibilities and its collaboration with other departments. The real interview starts with CoderPad where Python coding questions are asked, specifically relating to memory management and how data structures are affected by it.
Domande di colloquio [1]
Domanda 1
Evaluate each statement and determine the output:
a = [1, 2, 3]
b = [4, 5, 6]
c = a
1. print(a is b)
2. print(a == b)
3. print(a is c)
3. print(a == c)