Question: How do I prepare for Deloitte Interview?
Answer:-
For Deloitte Interview, always read and study about the company and also the job profile.
Try to be communicative during the Interview and ask questions if and when necessary.
Don’t worry, unlock all articles / blogs on PrepInsta by just simply logging in on our website
In this page you will find the latest Deloitte Interview Experience of candidates for the batches 2021-2022 selected in Deloitte. We have also included Deloitte Interview Questions with their Answers.
Page Highlights:
In this page you will find the latest Deloitte Interview Experience of candidates for the batches 2021-2022 selected in Deloitte. We have also included Deloitte Interview Questions with their Answers.
Page Highlights:
Deloitte is a multinational professional services global network. It provides services in audit, management, consulting, financial advisory and much more.
To know more about the company visit their website here: www2.deloitte.com
Deloitte hires through:-
The profiles Deloitte hires for includes:-
Deloitte conducts the following rounds in its recruitment process:-
You can read about the Deloitte rounds in details here: PrepInsta Deloitte
Deloitte conducts either one interview in which they ask both Technical and HR based questions. In some cased Deloitte conducts two separate interviews, one technical and one HR.
Deloitte visited our campus, hiring for an On Campus drive.
There were 3 rounds that were conducted.
The online test was conducted on an adaptive platform.
In total there were 3 sections:-
1.What is deadlock?
Deadlock refers to the condition where 2 or more processes are waiting for each other to release a resource indefinitely. In a deadlock both the processes wait for the other process to complete and are therefore stuck in a deadlock, where neither starts.
2.What do you know about DBMS?
DBMS or Database Management System software controls and manipulates the data that is stored or are to be stored in a database. The basic functions of DBMS include:-
3.What do you know about C language?
C is a general purpose programming language. It is one of the most compatible and easy to learn languages.
Features of C:-
Due to all this C is one of the most popular and widely used programming language.
Limitations of C:-
4.What is C++?
C++ is a superset of C, which basically means that any C program is also a C++ program, and that any compiler which supports C++ will support C. C++ supports the OOPS concept unlike C. It supports features like objects, classes, inheritance etc.
5.What is Inheritance in C++?
Inheritance refers to the ability of a class to be able to derive all the properties of a different class. It is one of the most important OOPS concept, as it allows:-
In C++ inheritance has three modes:-
Public Mode:-
Protected Mode:-
Private Mode:-
6.What is Data Encapsulation?
Data Encapsulation is the process of hiding the data and programs from the outside world and essentially capsuling them together in one entity.
7.Write a program to find the longest palindrome in an array.
#include<bits/stdc++.h>
using namespace std;
bool isPalindrome (int N)
{ // function to check whether a number is Palindrome or not
int rev = 0, rem;
int temp = N;
while (temp)
{
rem = temp % 10;
rev = rev * 10 + rem;
temp /= 10;
}
if (N == rev)
return 1;
return 0;
}
int main ()
{
int N; // variable for size of the array
cout << "Enter the size of the array: ";
cin >> N;
int A[N]; // Declaration of an array of size N
cout << "\nInput the elements of the array: ";
for (int i = 0; i < N; i++)
cin >> A[i];
sort (A, A + N); // Sort the array A in ascending order
int result; // variable that store the final output
for (int i = 0; i < N; i++)
{
// check every ith value is Palindrome or not
if (isPalindrome (A[i]))
result = A[i];
}
cout << "\nThe longest palindrome number is : " << result;
return 0;
}
There were some HR questions also that were asked in this round only.
8.What do you know about Deloitte?
9.Where do you see yourself in 5 years?
These were all the questions that were asked.
Deloitte visited our campus, hiring for the USI profile for the analyst role. Our TPO sent an email with the eligibility criteria and the job description. All the eligible students were then sent an email about a pre placement talk.
The pre-placement talk was an online webinar where they informed us about the profile and the requirements for the profile. They also informed us about the salary and the work culture.
After the pre placement talk we got to know about the online assessment round, scheduled for almost two weeks later. I am a regular user of PrepInsta, and I immediately started preparation from their Deloitte Course on Prime and quizzes on the Prepinsta website.
The Online Assessment round was conducted on AMCAT.
There were four sections:-
In the Technical Quiz there were questions from SQL, DSA and programming languages.
After the Online Assessment, I had to wait for a week. The results came and I passed them. The selected candidates were then called for a Personal Interview.
They only conducted one interview round for our campus, where they asked technical questions as well as HR questions.
The questions included:-
1.Program on pattern printing.
Check out : Top 100 codes for Pattern Printing questions and more coding questions that are asked in Interviews.
2.Project based questions , which included:-
3.Questions on my internship, which included:-
4.One puzzle based question, which was the Josephus Puzzle.
5.Why do you want to join Deloitte?
6.Can you work under pressure?
7.Are you a team player?
8.Give an instance where you solved a conflict.
9.Any questions?
To read other companies interview experiences, visit Interview Dashboard: https://prepinsta.com/interview-experience/
I got placed in Deloitte as Technology Consulting Analyst through on campus drive. In August, Deloitte visited our campus for On Campus hiring. There was a pre-placement talk where they explained the various process and job requirement/job details.
Below I have shared the details of my recruitment.
The first round was an online aptitude test, with Multiple Choice Questions. It was conducted on AMCAT. The test was held on August 14th, and the test link was live from 9 am to 9 pm. We had to take in the test between that period . The time duration for the exam was 75 minutes, with each section being timed separately.
In the exam there were 3 section namely-English, Logical Reasoning and Quantitative Aptitude.
Overall I found the questions pretty easy and some were moderate level. I had practiced from PrepInsta and a lot of the questions were similar. In our college altogether 350 students applied and 75 of them were selected for the next round.
The results for this round came after a week and the second round was scheduled a day later.
Round 2 was an online group discussion round, where we were grouped in groups of 8-10 people. This round was conducted on Microsoft Teams. In the group discussion we were given a case study and 3 problem statements. The interviewer first spoke about the case study and gave a small presentation.
Then everyone started a discussion on the problem statements, for around 25 minutes and then in the end everyone was asked to give their conclusions. After this round from the 75 candidates 40 were selected for the next round.
This was round conducted on the same day. I got a Microsoft teams link for the round. The interviewer asked me to introduce myself and then some personal questions first like how was my day, how I felt about the previous round etc. Then he asked me some resume based questions and then some situation based questions. The situation based questions included how would you handle argument with a co-worker, how would you handle deadlines etc.
He then asked me about my interests and extra curricular activities and the positions I held in college clubs.
This round on the whole was not technical but rather they were testing our communication skills.
Deloitte Technical Interview Questions for Analyst:
1.Introduce yourself.
2.Give a brief explanation of your project.
3.What is the future scope of this project?
4.How do you handle pressure?
5. If you are put in a team where some team members are behaving unprofessionally, what to do you do?
From this round they shortlisted 15 candidates.
This round was conducted two days later on Microsoft Teams platform. In this round there were 2 senior managers.
Some of the questions that were asked included:-
1.Do you want to work in a company or start your own startup?
2.What are your 2 favorite engineering subjects?
3.What do you know about multiplexers?
4.What is the difference between linked list and array, and where are they used together?
5.Do you have any plans for higher education?
In PrepInsta Prime, we have created a custozised Deloitte Interview Preparation Course. This course includes:-
To read more Interview Experiences of selected candidates, visit:
Answer:-
For Deloitte Interview, always read and study about the company and also the job profile.
Try to be communicative during the Interview and ask questions if and when necessary.
Answer:-
Deloitte interviews can be pretty challenging, as the company often conducts multiple interviews before hiring. However with correct preparation, you can easily clear this round and get placed in Deloitte.
Answer:-
Apart from Technical and Coding questions, Deloitte also asks situational and behavioral questions to test a candidate’s thought process and comprehension skills.
Get Hiring Updates right in your inbox from PrepInsta
Login/Signup to comment