I applied through a recruiter. The process took 1 day. I interviewed at Deloitte (Gurgaon, Haryana) in Apr 2016
Interview
In first round they asked from core java, servlet, jsp, spring, hibernate. In second round they asked from garbage collector and about project. After second round there is a communication test by phone.
I applied in-person. The process took 1 day. I interviewed at Deloitte (Bengaluru)
Interview
Interview was average but you have to be clear on those average things.
Be confident but not with your wrong answers, just say no if you doesn't know anything about the topic.
They ask very basic questions like :
Interview questions [5]
Question 1
Abstraction and diff between abstract class and Interface.
They will check your logical understanding by asking some algo e.g. sorting, searching algos and difficulty will depend on your exp. In my case array was given and interviewer asked me to do sorting with any algo.
There was no quest on threading but they can ask , It depends...
He asked me How internally Hashmap works..,. no other quest from collection but one should be prepared... with threading collection and generics.. and there were questions from my CV like MVC architecture and stuff so you can prepare your CV according to your knowledge and instead of putting generic terms just go with the specific API or implementations you have done. So they will directly jump on these things and will check if you know or not the things you written in your CV..
I applied through a staffing agency. I interviewed at Deloitte (Mumbai) in Feb 2016
Interview
I applied through a recruiter agency.This process took 2-3 hours.I interviewed at Deloitte(Mumbai) and around 100-200 people came for interview
The interview process is as below
1.First Technical Round(Basic java questions)
2.Second Technical Round
3.Versant Test(Communication Skills Tests of 30min)
4.Managerial Round
Dress code in strictly formals
Interview questions [5]
Question 1
what is diff between procedural oriented language and object oriented language
7.can muliple inheritan e possible in java using abstract class
8.what is o/p of below code
interface a{
int i=10}
interface b{
int i=5}
class c a,b{
sop(i)
}
o/p:?
9.write code for jdbc connection in java
10.how Hashmap internally work
11.write code to retrieve elements from hashtable
12.diff between vector and arraylist
13.what is synchronization
14.what ibm websphere?is it application server or web server?why you use it?
15.diff between application server and web server
16.what is o/p of below code
class a
{
int i=10}
class b
{
int i=5}
public class c extends a,b{
psvm{
sop(i)
}
}