Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Deloitte Team. If you also belong to the team, you can get access from here

Deloitte Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Deloitte Interview Questions, Process, and Tips

Updated 22 Feb 2025

Top Deloitte Interview Questions and Answers

View all 1.6k questions

Deloitte Interview Experiences

Popular Designations

2.9k interviews found

Analyst Interview Questions & Answers

user image Anonymous

posted on 16 Nov 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Where do you see yourself in 3 years?
  • Q2. Discussion on project detailed.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and confident

Top Deloitte Analyst Interview Questions and Answers

Q1. Reverse a Number Problem Statement Given an integer 'N', write a program to generate the reverse of the number and print the resulting reversed number. The reversed number should not include any leading zeros that may appear. Example: Input... read more
View answer (2)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is hibernate transaction?
  • Ans. 

    Hibernate transaction is a way to manage database transactions in Hibernate framework.

    • Hibernate transaction allows grouping multiple database operations into a single unit of work.

    • It ensures data consistency and integrity by either committing all changes or rolling back in case of failure.

    • Transactions in Hibernate are managed using Session interface.

    • Example: session.beginTransaction(); session.save(entity); session.get

  • Answered by AI
  • Q2. How to handle million of data which need to be save in the DB?
  • Ans. 

    Use efficient database design, indexing, partitioning, and caching to handle large amounts of data.

    • Optimize database schema for efficient storage and retrieval.

    • Implement indexing on frequently queried columns to speed up search operations.

    • Partition data to distribute load across multiple servers or disks.

    • Utilize caching mechanisms like Redis or Memcached to reduce database load.

    • Consider using sharding to horizontally s...

  • Answered by AI

Skills evaluated in this interview

Top Deloitte Senior Software Engineer Interview Questions and Answers

Q1. How to handle million of data which need to be save in the DB?
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Business Analyst Interview Questions & Answers

user image Tamizh Chelvam

posted on 20 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about ba roles and responsibilities

Top Deloitte Business Analyst Interview Questions and Answers

Q1. What do you think telecom operators should do to prevent this problem?
View answer (1)

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. EIB vs CCW difference
  • Ans. 

    EIB is a tool for non-technical users to import data, while CCW is a tool for technical users to build integrations.

    • EIB (Enterprise Interface Builder) is a tool in Workday that allows non-technical users to easily import data into the system.

    • CCW (Cloud Connect for Workday) is a tool for technical users to build integrations between Workday and other systems using web services.

    • EIB is more user-friendly and suitable for ...

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Prism and Extend experience
Round 3 - HR 

(1 Question)

  • Q1. About salary expectations

Skills evaluated in this interview

Workday Integration Consultant Interview Questions asked at other Companies

Q1. Tell the flow workday studio to split 15 fields in 1 document and another 5 in another document
View answer (1)

Deloitte interview questions for popular designations

 Consultant

 (455)

 Analyst

 (357)

 Senior Consultant

 (114)

 Associate Analyst

 (76)

 Assistant Manager

 (72)

 Tax Consultant

 (70)

 Business Analyst

 (64)

 Software Developer

 (44)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is UI Adaptability?
  • Ans. 

    UI Adaptability refers to the ability of a user interface to adjust and respond to different screen sizes, devices, and user preferences.

    • UI Adaptability ensures that the user interface remains functional and visually appealing across various devices and screen sizes.

    • It involves designing flexible layouts, responsive components, and adaptive navigation to provide a consistent user experience.

    • Examples include responsive ...

  • Answered by AI

SAP Fiori Ui5 Developer Interview Questions asked at other Companies

Q1. How routes and navigations work in sapui5 and where routes are defined and where their are initiated?
View answer (2)

Get interview-ready with Top Deloitte Interview Questions

Analyst Interview Questions & Answers

user image Anonymous

posted on 6 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It will be of 90 min covering areas like aptitude, cloud computing basics , sql basics

Round 2 - Case Study 

Case study and a resume based

Round 3 - HR 

(1 Question)

  • Q1. How you tackle the difficulties in your project
  • Ans. 

    I tackle difficulties in my project by breaking them down into smaller tasks, seeking help from team members, and staying organized.

    • Break down the problem into smaller tasks to make it more manageable

    • Seek help from team members or mentors for different perspectives and solutions

    • Stay organized by creating a timeline or task list to track progress and prioritize tasks

  • Answered by AI

Top Deloitte Analyst Interview Questions and Answers

Q1. Reverse a Number Problem Statement Given an integer 'N', write a program to generate the reverse of the number and print the resulting reversed number. The reversed number should not include any leading zeros that may appear. Example: Input... read more
View answer (2)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)

Jobs at Deloitte

View all

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 15 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Project experience
  • Ans. 

    I have experience working on various data analysis projects, including market research, customer segmentation, and predictive modeling.

    • Developed predictive models to forecast customer churn rates

    • Conducted market research to identify new target demographics

    • Performed customer segmentation analysis to personalize marketing strategies

  • Answered by AI
Round 2 - Coding Test 

SQl Python power bI celonis

Round 3 - HR 

(1 Question)

  • Q1. Strength weakness

Top Deloitte Data Analyst Interview Questions and Answers

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Qa Automation Testing Engineer interview

user image Surya Sekhar Ganguly

posted on 16 Nov 2021

Consultant Interview Questions & Answers

user image Anonymous

posted on 29 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Javascript Basics
  • Q2. React Questions

Top Deloitte Consultant Interview Questions and Answers

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

Analyst Interview Questions & Answers

user image Anonymous

posted on 29 Aug 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Design patetrns
  • Q2. Singleton design patter

Top Deloitte Analyst Interview Questions and Answers

Q1. Reverse of a numberWrite a program to generate the reverse of a given number N. Print the corresponding reverse number. Note : If a number has trailing zeros, then its reverse will not include them. For e.g., reverse of 10400 will be 401 in... read more
View answer (2)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)

Deloitte Interview FAQs

How many rounds are there in Deloitte interview?
Deloitte interview process usually has 2-3 rounds. The most common rounds in the Deloitte interview process are Technical, One-on-one Round and HR.
How to prepare for Deloitte interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Deloitte. The most common topics and skills that interviewers at Deloitte expect are Risk Management, Project Management, Finance, SQL and Accounting.
What are the top questions asked in Deloitte interview?

Some of the top questions asked at the Deloitte interview -

  1. Suppose there is a room in the office and X people enter room throughout the da...read more
  2. If you are given an array of 6 numbers 123345 give the logic for finding the d...read more
  3. Suppose you are testing an application and you find a bug and now you assigned ...read more
How long is the Deloitte interview process?

The duration of Deloitte interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Deloitte Interview Process

based on 2.1k interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 804 Interviews
BCG Interview Questions
3.8
 • 196 Interviews
Bain & Company Interview Questions
3.8
 • 103 Interviews
View all

Deloitte Reviews and Ratings

based on 17.6k reviews

3.8/5

Rating in categories

3.8

Skill development

3.3

Work-life balance

3.8

Salary

3.9

Job security

3.8

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 17.6k Reviews and Ratings
SAP CPI

Hyderabad / Secunderabad

6-8 Yrs

Not Disclosed

Vlocity Developer

Hyderabad / Secunderabad,

Bangalore / Bengaluru

+1

3-6 Yrs

₹ 5.4-22 LPA

Performance Engineer

Hyderabad / Secunderabad

6-8 Yrs

Not Disclosed

Explore more jobs
Consultant
33.3k salaries
unlock blur

₹6.3 L/yr - ₹23.4 L/yr

Senior Consultant
20.9k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
14.2k salaries
unlock blur

₹3.9 L/yr - ₹12.5 L/yr

Assistant Manager
10.1k salaries
unlock blur

₹7.8 L/yr - ₹24 L/yr

Manager
7.1k salaries
unlock blur

₹15.8 L/yr - ₹52 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.8
Compare

PwC

3.4
Compare

Ernst & Young

3.4
Compare

Cognizant

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview