Two technical interviews ~ 40 minutes with current software engineers (coding and resume questions, runtime and space complexity analysis) and a behavioral interview with hiring manager later (didn't get to this stage, but they explained), all conducted online
I applied online. The process took 3 weeks. I interviewed at Qualtrics
Interview
3 phases:
1. Online coding assessment
2. In person technical interview
3. In person technical interview
Both in person interviews were with current software engineers at Qualtrics. Overall, took 3 weeks. The interviews were held over zoom with cameras turned off.
I applied through other source. The process took 4 weeks. I interviewed at Qualtrics (Cambridge, MA) in Apr 2021
Interview
The interview process consisted of three parts after submitting the first application and getting a reply. The first two were technical interviews that involved a coding question and time to ask the engineer about the company. The last interview is more behavioral-based and is with a hiring manager.
Interview questions [1]
Question 1
Given two arrays find a pair of numbers in the two arrays to switch such that the products are equal.
A =[5*2*1*3*3] -> [5*2*1*3*2]
B = [10*2*1*2] -> [10*2*1*3]
Swap [3,2]