I applied through a staffing agency. I interviewed at Deloitte (Bengaluru) in Sep 2015
Interview
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.
Interview questions [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.