Me postulé a través de un reclutador. El proceso tomó 1 semana. Acudí a una entrevista en LinkedIn (San Jose, CA) en abr 2015
Entrevista
Phone interview using online text editor - collabedit. Interviewer just asked me to connect to the text editor and provided the following task.
I had to use my Java skills and write a code and next question was on how I will test this method
My code:
public static int revInt (int iNum){
if (iNum == 0) return 5;
String sNum = Integer.toString(iNum);
char c;
StringBuffer sb = new StringBuffer();
for(int i = 0; i<sNum.length(); i++){
c =sNum.charAt(i);
if (c=='0') c='5';
sb.append(c);
}
return Integer.parseInt(sb.toString());
Test Cases:
1. Use 120096045 -> 125596545
2. Negative int (-1), throw exception
3. 0 -> 5
4. "abcd"
5 integer max
6. max+1 exception
7. doubme
8. flow
9. null
Preguntas de entrevista [1]
Pregunta 1
Write a program to replace 0s with 5 in a given number.
Eg: 1208 -> 1258
120096045 -> 125596545
Me postulé a través de un reclutador. El proceso tomó 1 semana. Acudí a una entrevista en LinkedIn en feb 2016
Entrevista
I had already appeared for Linkedin 2 years back, and I knew they are more focussed towards memory testing, rather than analyzing problem solving and analytical skill of the person. The interviewer seems to be very naive. I think he had some prepared set of questions whose answer is known to him, and he can't think beyond that. Definitely not a standard interview process.
Preguntas de entrevista [1]
Pregunta 1
1) Asked to implement Java Iterable interface to read a file.
2) Asked the usages of different HTTP status code.
3) Asked about Ruby test framework that I was using.
Me postulé a través de una agencia de empleos. El proceso tomó 5 días. Acudí a una entrevista en LinkedIn (Mountain View, CA) en ago 2013
Entrevista
Very tough interview process they basically do lot of hands on coding interview. They have a team lead who does the phone screen. Once selected for the phone screen they invited me to the mountain view campus for in person. In person was done by 6 people. Which involved coding, leadership, people management , cross functional etc.
Preguntas de entrevista [1]
Pregunta 1
How can you manage cross functional teams when there is a release ??