Me postulé a través de una agencia de empleos. Acudí a una entrevista en Deloitte (Bengaluru) en sep 2015
Entrevista
The interview process took 2 hrs. Only 5-6 core java questions were asked in first round. answered all but 1, was not selected in first round. Interviewer seemed tired and was not interested in asking questions. Should have asked more questions on different topics or should have given a chance for next round... was disappointed with the result.
Preguntas de entrevista [5]
Pregunta 1
asked core java questions.
If a method is overloaded in a class in the following way
public void fun(Object o){
}
public void fun(ArrayList a){
}
and is invoked in the following manner
obj.fun(null)
which method will be invoked.