J'ai postulé via un établissement d'enseignement supérieur ou universitaire. Le processus a pris plus d'une semaine. J'ai passé un entretien chez SevOne (State College, PA) en févr. 2016
Entretien
It was a 30 mins on-campus interview after career fair day. There was a technical employee. It was on-campus so the process is simple. We talked on career fair day and the recruiter invited me to attend the interview the day after. There was an algorithm question and one time complexity question and a question relating c++ class inheritance concepts.
Questions d'entretien [1]
Question 1
1. Algorithm. Given an array Weights denoting the weights of items in another array Items. Say Weights = {2, 3, 5,1, 4}. Items = {E, B, A, D, C}. Write a function to pick item among Items array. The probabilities of pick A and B and C and D and E should be P(A) : P(B) : P(C): P(D) :P(E) = 5: 3: 4: 1: 2.
2. Time complexity of merge-sort, quick-sort.
3. Describe Multiple inheritance in C++.