Me postulé en línea. El proceso tomó 1 semana. Acudí a una entrevista en Amazon en ene 2012
Entrevista
It consisted of 2 phone interviews each lasted about 45mins.
The questions I could remember are:
Assume you have an array A of n numbers (non-zero real numbers, not sorted), you need to create an array B, where the ith element of B equals the product of all elements in A except A[i]. In other words:
B[i] = A[0]*A[1]*....A[i-1]*A[i+1]*....A[n-1]
Do not use divisions. Only use addition and multiplications. Minimize the time complexity(use as few as multiplications as possible).
The solution is easy:
use helper array A1, A2:
A1[i] is product of A[0] to A[i-1], use dynamic programming to calculate gradually and save multiplications
A2[i] is product of A[n-1] to A[i+1], use same technique as above only in another direction.
B[i]=A1[i]*A2[i]
The third interview is from a SDET team asking me if I'm interested in testing and some testing questions. I feel that I went on well.
However I got declined a week after. Probably they have people interviewed before me fill in the position.
Preguntas de entrevista [1]
Pregunta 1
given non-zero number array A, create array B where B[i] = product of all elements in A except A[i].
It started with an OA, and then after a few weeks, I got invited to four rounds of interviews: technical and behavioral at 3 of the 4, and behavioral only at one.
Um teste de código online, se aprovado, vai para o loop. O loop é 4 entrevistas seguidas, duas em inglês e duas em português. 3 entrevistas técnicas de código, todas as 4 têm pergunta de liderança.
Preguntas de entrevista [1]
Pregunta 1
Pergunta historicas baseada nos principios de lideranca da amazon.
The whole process stretched over nearly a month, longer than I anticipated. After an initial phone screen, I faced a technical round that included a Min Stack implementation question. We discussed design considerations and thread safety, which threw me for a bit. Fortunately, I remembered a specific mock interview I practiced on PracHub that mirrored this scenario closely, making me feel more at ease. Ultimately, I received an offer, but I chose to decline due to the company culture not feeling like the right fit.
Las mejores empresas en cuanto a "Remuneración y prestaciones" cerca de ti