Me postulé en línea. El proceso tomó 2 semanas. Acudí a una entrevista en LinkedIn
Entrevista
phone interview
Preguntas de entrevista [1]
Pregunta 1
Question1
/**
* Given a nested list of integers, returns the sum of all integers in the list weighted by their depth
* For example, given the list {{1,1},2,{1,1}} the function should return 10 (four 1's at depth 2, one 2 at depth 1)
* Given the list {1,{4,{6}}} the function should return 27 (one 1 at depth 1, one 4 at depth 2, and one 6 at depth 3)
Me postulé en línea. El proceso tomó 4 semanas. Acudí a una entrevista en LinkedIn
Entrevista
One behavior interview: Talk about yourself
Two phone screen: Easy coding questions. You can find most of them on glassdoor or other interview question websites
5 round onsite interview: 1 behavior interview, 2 coding interviews (easy) and 2 design interviews (hard for me, I am not familiar with system design questions)
Preguntas de entrevista [1]
Pregunta 1
1. mobile backend system design
2. security system design
3. DP question
4. binary tree question (encode in a line and decode)
Me postulé en línea. El proceso tomó 1 semana. Acudí a una entrevista en LinkedIn
Entrevista
Had 1st round as technical phone interview. Interviewer shared a document and asked to write the code. The questions was not the difficult. He asked me to implement List interface of java. I had to implement all add, get and remove methods using any data structure
Me postulé a través de un reclutador. Acudí a una entrevista en LinkedIn en sept 2013
Entrevista
I was contacted by a recruiter through LinkedIn. I first had a 30 minute phone conversation with the recruiter about my interests, LinkedIn, and the role they thought would be a good fit for me. He said the usual process is two technical phone interviews followed by an onsite.
Preguntas de entrevista [1]
Pregunta 1
For the first technical phone screen, the questions involved permutations (Scramble an array with an equal chance for every value. Return a list of all permutations of an array.).