J'ai postulé via un établissement d'enseignement supérieur ou universitaire. Le processus a pris 1 jour. J'ai passé un entretien chez SAP (Vancouver, BC) en janv. 2019
Entretien
1 hour long interview - My interviewers were pretty friendly!
A few minutes in the beginning for behavioural/resume questions
Code Review based on Nodes/LinkedList concepts
Technical Question based on finding the largest difference between two positive integer lists
Questions d'entretien [2]
Question 1
Code Review
- Correct all errors you can find.
- Be nitpicky about readability and errors.
- There can be bugs in the code, understand it by running through with an example first.
Technical Question:
Given two unsorted lists of positive integer numbers, find the largest difference between the two. The number in list1 must be smaller than list2.
Example:
{1, 3, 8, 7, 4}
{0, 2, 6, 5, 10}
Largest difference is between 1 and 10.