Candidatei-me por meio de uma agência de recrutamento. Fui entrevistado pela Deloitte (Bengaluru) em set. de 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.
Perguntas de entrevista [5]
Pergunta 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.