I applied online. The process took 1 week. I interviewed at Alphawave Semi (Toronto, ON) in May 2025
Interview
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.
Interview questions [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)