J'ai postulé via un recruteur. Le processus a pris 1 semaine. J'ai passé un entretien chez Nav (Draper, UT) en août 2021
Entretien
One recruiter screening, then a technical interview (1-hour). I don't know if they have another interview after that. Technical Interview is a Python OOP and unit testing skill level assessment. A strong Object Oriented Python programming grasp is expected. They expect to see that you know how to do unit testing.
Questions d'entretien [1]
Question 1
In Python, implement a set object by only using standard Python modules.
Create as many the following features as possible. But don’t rush. Nobody gets them all done in the allotted time.
Create an empty set
Add items to the set
Get all the items in a set
Get the size of the set
Remove and item from the set
Check if a given item exists in a set
Create a set with items at initialization
Compare the equality of two different sets
Convert a set to a list
Return the ordered items from a set