Candidatei-me online. O processo levou 2 semanas. Fui entrevistado pela Altera (Toronto, ON) em abr. de 2016
Entrevista
I applied online at Altera website, got an email for initial HR interview on the phone after 1 week. It was only for 10 minutes. They asked about my previous experience and asked me tell a good debugging story.
Later got an email in 2 days for on-site interview at Altera Toronto office. It was with 2 engineers, half an hour each. They were both friendly and didn't talk much about my past experiences or stuff on resume, jumped right into technical stuff first asked about my master's thesis and algorithm/code design questions.
Perguntas de entrevista [2]
Pergunta 1
Given two integer arrays, write a function which can compute the product of first array and save in the second array, except the product of that particular element from first array of same index you currently store in second array.
A = [a(0), a(1), a(2), a(3) ... a(n)]
B = [b(0), b(1), b(2), b(3) ... b(n)]
where
b(0) = a(1) x a(2) x a(3) .... x a(n)
b(1) = a(0) x a(2) x a(3) .... x a(n)
.
.
.
b(n) = a(0) x a(1) x a(2) .... x a(n-1)