J'ai postulé via une agence de recrutement. J'ai passé un entretien chez Deloitte (Bengaluru) en sept. 2015
Entretien
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.
Questions d'entretien [5]
Question 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.