J'ai postulé en ligne. Le processus a pris 1 semaine. J'ai passé un entretien chez Alphawave Semi (Toronto, ON) en mai 2025
Entretien
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.
Questions d'entretien [1]
Question 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)