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 11 Mar 2025

Top Deloitte Interview Questions and Answers

View all 1.7k questions

Deloitte Interview Experiences

Popular Designations

2.8k interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Aug 2024

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

(2 Questions)

  • Q1. Basic Python, SQL & Spark coding questions.
  • Q2. Nth highest salary, word count in pyspark
  • Ans. 

    To find the nth highest salary in pyspark, use the window function with row_number and filter on the desired rank.

    • Use window function with row_number to assign a rank to each salary

    • Filter the result to get the row with the desired rank

    • Example: df.withColumn('rank', F.row_number().over(Window.orderBy(F.col('salary').desc()))).filter(F.col('rank') == n).select('salary')

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions on SQL & PySpark.
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions about previous projects & optimization techniques etc. Also behavioural
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation part.

Skills evaluated in this interview

Top Deloitte Data Engineer Interview Questions and Answers

Q1. What is difference between Cloud Run and Cloud Functions
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

Analyst Interview Questions & Answers

user image Anonymous

posted on 11 Oct 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Contains logical quants di verbal

Round 2 - Technical 

(2 Questions)

  • Q1. Project desciption and internship
  • Q2. Us healthcare defination
Round 3 - HR 

(2 Questions)

  • Q1. Internship role and impact
  • Ans. 

    My internship role involved conducting market research and financial analysis, leading to recommendations that were implemented by the team.

    • Researched market trends and competitor analysis to identify growth opportunities

    • Performed financial analysis to evaluate investment decisions

    • Presented findings and recommendations to senior management

    • Collaborated with cross-functional teams to implement strategies

    • Contributed to th

  • Answered by AI
  • Q2. Strenght and weakness

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 (3)

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
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. ES6 new features
  • Ans. 

    ES6 introduces new features like arrow functions, classes, template literals, let and const declarations, and more.

    • Arrow functions provide a more concise syntax for writing functions.

    • Classes allow for easier object-oriented programming in JavaScript.

    • Template literals enable easier string interpolation and multiline strings.

    • let and const declarations provide block-scoped variables.

    • ES6 also introduces features like destr...

  • Answered by AI
  • Q2. Closure and their coding questions
  • Q3. Lazy loading and redux working in react
  • Ans. 

    Lazy loading is a technique used to defer loading of non-essential resources until they are actually needed, while Redux is a state management library for React applications.

    • Lazy loading in React involves dynamically importing components or modules only when they are required, improving performance by reducing initial load times.

    • Redux is used in React applications to manage the state of the application in a predictable...

  • Answered by AI
  • Q4. Call by value & call by reference, object-related, hoisting etc
  • Q5. How do we optimize the API and rendering in React?
  • Ans. 

    Optimizing API and rendering in React involves reducing unnecessary API calls, using memoization, lazy loading, and code splitting.

    • Reduce unnecessary API calls by batching requests or using GraphQL to fetch only required data.

    • Use memoization techniques like useMemo and useCallback to prevent unnecessary re-renders.

    • Implement lazy loading for components that are not immediately needed, improving initial load time.

    • Utilize...

  • Answered by AI

Skills evaluated in this interview

Full Stack Software Developer Interview Questions asked at other Companies

Q1. Oops in Java Patterns in Java JDK,JRE,JVM MVC Array questions strings in Java This,super keywords Java problems like palindrome, prime number,and so many problems and logics Why java is platform independent Why java is not platform dependen... read more
View answer (1)

Analyst Interview Questions & Answers

user image Anonymous

posted on 6 Oct 2024

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

Aptitude+CS fundamentals MCQ speed is the main game

Round 2 - Group Discussion 

Topic-Impact of Upi going global on india....FIRST GD THEN DEBATE THEN THE INTERVIEWER ASKED ONE-ONE QN TO EACH CANDIDATE.

Round 3 - Technical 

(3 Questions)

  • Q1. Explain Projects on ur resume
  • Ans. 

    Managed various projects including market research, product launches, and process improvements.

    • Led cross-functional teams to successfully launch new products

    • Conducted market research to identify new opportunities for growth

    • Implemented process improvements to increase efficiency and reduce costs

  • Answered by AI
  • Q2. Why NOSQL instead of SQL
  • Ans. 

    NoSQL offers flexibility, scalability, and better performance compared to SQL databases.

    • NoSQL databases are schema-less, allowing for more flexibility in data storage and retrieval.

    • NoSQL databases can easily handle large amounts of unstructured data, making them ideal for big data applications.

    • NoSQL databases are designed for horizontal scalability, allowing for easy distribution of data across multiple servers.

    • NoSQL d...

  • Answered by AI
  • Q3. What you know about cloud
  • Ans. 

    Cloud computing refers to the delivery of computing services over the internet, including storage, servers, databases, networking, software, and analytics.

    • Cloud computing allows users to access and store data and applications on remote servers rather than on local computers.

    • It offers scalability, flexibility, cost-effectiveness, and increased collaboration.

    • Examples of cloud services include Amazon Web Services (AWS), M

  • Answered by AI

Skills evaluated in this interview

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 (3)

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)

Deloitte interview questions for popular designations

 Consultant

 (458)

 Analyst

 (354)

 Senior Consultant

 (119)

 Assistant Manager

 (74)

 Associate Analyst

 (71)

 Tax Consultant

 (68)

 Business Analyst

 (63)

 Data Analyst

 (42)

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is display properties?
  • Q2. What is dependency Injection?

Interview Preparation Tips

Interview preparation tips for other job seekers - More dependent on luck and knoledge of the interviewer than knoledge

Angular Frontend Developer Interview Questions asked at other Companies

Q1. How to implement interfaces without methods?
View answer (1)

Get interview-ready with Top Deloitte Interview Questions

Consultant Interview Questions & Answers

user image Anonymous

posted on 28 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Describe your experience
  • Q2. Why do you think you are a good fit for the role

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)

Jobs at Deloitte

View all
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 5 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Questions related to accounts
Round 2 - Aptitude Test 

I have completed within half hour

Round 3 - Technical 

(2 Questions)

  • Q1. Questions related to excel as the role was of audit and assurance associate analyst in ESC
  • Q2. Simple communication and excel terminologies
Round 4 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Communication test
Round 5 - Behavioral 

(2 Questions)

  • Q1. Communication test
  • Q2. Accounting questions

Interview Preparation Tips

Topics to prepare for Deloitte Associate Analyst interview:
  • Advanced Excel
Interview preparation tips for other job seekers - Very bad experience with Deloitte, I have completed all the rounds of interview and they told they will update me about the further discussions soo but still i did not got any response from Deloitte they just took all the rounds of interview and told me to wait for their response it's over a month now but still did not got any response from the company and even i tried contacting the talent team but even they are not lifting the calls even sent the follow-up mails to the HR's even they are not even replying to my mails, Just one request to the Deloitte HR and talent team please respond to candidates and send the mail if they are rejected.
A small advice for the candidates who are applying for any positions in Deloitte do not have high expectations.

Top Deloitte Associate Analyst Interview Questions and Answers

Q1. If you are given an array of 6 numbers 123345 give the logic for finding the duplicate numbers in this array Other technical questions where purely based on what we say previously. When I talked about my course and specializations, all the ... read more
View answer (7)

Associate Analyst Interview Questions asked at other Companies

Q1. If you are given an array of 6 numbers 123345 give the logic for finding the duplicate numbers in this array Other technical questions where purely based on what we say previously. When I talked about my course and specializations, all the ... read more
View answer (7)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is bias v variance tradeoff
  • Q2. When should bagging v boosting techniques be used

Data Science Consultant Interview Questions asked at other Companies

Q1. Why did you choose those specific technologies/algorithms?
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between jvm jre jdk?
  • Ans. 

    JVM is the virtual machine that runs Java bytecode, JRE is the runtime environment for Java programs, and JDK is the development kit for creating Java applications.

    • JVM (Java Virtual Machine) is responsible for running Java bytecode on different platforms.

    • JRE (Java Runtime Environment) includes JVM, libraries, and other components necessary to run Java applications.

    • JDK (Java Development Kit) is a software development ki...

  • Answered by AI
  • Q2. Why string is immutable?
  • Ans. 

    String is immutable in Java to ensure security, thread safety, and optimization.

    • Immutable strings prevent accidental changes to sensitive data like passwords.

    • Immutable strings allow for safe sharing of string literals across multiple threads.

    • Immutable strings enable string pooling for memory optimization.

    • Example: String str = "Hello"; str.concat(" World"); // str remains "Hello"

  • Answered by AI

Skills evaluated in this interview

Fullstack Java Developer Interview Questions asked at other Companies

Q1. If needed, will you work on the older technology stack?
View answer (2)

Risk Analyst Interview Questions & Answers

user image Anonymous

posted on 23 Oct 2024

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Group Discussion 

Virtual group discussion

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Past experience based qsns
Round 3 - One-on-one 

(1 Question)

  • Q1. Subject related qsns
Round 4 - Technical 

(2 Questions)

  • Q1. Past experiences
  • Q2. Situational basis

Risk Analyst Interview Questions asked at other Companies

Q1. How will you determine the factors can be considered as risk while insuring a bike?
View answer (1)

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
 • 791 Interviews
BCG Interview Questions
3.7
 • 196 Interviews
Bain & Company Interview Questions
3.8
 • 105 Interviews
View all

Deloitte Reviews and Ratings

based on 18k reviews

3.8/5

Rating in categories

3.8

Skill development

3.3

Work-life balance

3.8

Salary

3.8

Job security

3.7

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 18k Reviews and Ratings
NetSuite Technical Manager

Hyderabad / Secunderabad,

Bangalore / Bengaluru

6-11 Yrs

Not Disclosed

SAP BTP Senior Consultant

Hyderabad / Secunderabad,

Pune

+1

6-10 Yrs

₹ 12-39.08 LPA

Explore more jobs
Consultant
33.8k salaries
unlock blur

₹6.4 L/yr - ₹23.3 L/yr

Senior Consultant
21.4k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
14.5k salaries
unlock blur

₹3.9 L/yr - ₹12.7 L/yr

Assistant Manager
10.2k salaries
unlock blur

₹7.8 L/yr - ₹24 L/yr

Manager
7.2k salaries
unlock blur

₹16 L/yr - ₹53 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.8
Compare

PwC

3.4
Compare

Ernst & Young

3.4
Compare

Cognizant

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