Candidatei-me de outra forma. O processo levou 4 semanas. Fui entrevistado pela NeoGames (Tel Aviv-Yafo) em abr. de 2015
Entrevista
Verbal interview via skype, then 60 minutes to solve three code tasks. Average AngularJS question and plain javascript. After tech interview I got positive feedback and the week after I talked to R&D director.
Perguntas de entrevista [4]
Pergunta 1
What are the differences between service, factory and provider
Write recursive function that reverses a string (for example "time" becomes "emit")
a. (Use only core JavaScript.)
b. Don't use any reverse or sorting functions
Write recursive function that as an argument gets n and calculates what is corresponding number in n place in Fibonacci sequence
For example f(8) = 21
(Fibonacci sequence for example: 0,1,1,2,3,5,8,13,21,34,55….)
a. Discuss performance of the function with large n number. What are pitfalls? How function can be optimized.
b. Bonus: write function complexity of space and time.