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

Top Deloitte Interview Questions and Answers

View all 1.7k questions

Deloitte Interview Experiences

Popular Designations

2.8k interviews found

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

(2 Questions)

  • Q1. Deferred tax liability , practical use, how do we calculate
  • Ans. 

    Deferred tax liability is a balance sheet item representing taxes that will be paid in the future due to temporary differences in accounting and tax rules.

    • Deferred tax liability arises when a company's taxable income is greater than its accounting income, resulting in taxes being paid in the future.

    • It is calculated by multiplying the temporary difference between taxable income and accounting income by the tax rate.

    • Exam...

  • Answered by AI
  • Q2. Swap in simple terms, dividend growth model
  • Ans. 

    A swap is a financial agreement between two parties to exchange cash flows or other financial instruments.

    • A swap involves two parties exchanging cash flows or other financial instruments based on a predetermined set of terms.

    • Common types of swaps include interest rate swaps, currency swaps, and commodity swaps.

    • The dividend growth model is a method used to value a company's stock based on the expected future dividends i...

  • Answered by AI

Top Deloitte Financial Analyst Interview Questions and Answers

Q1. How do you do ageing analysis/how do you prepare bills payables
View answer (1)

Financial Analyst Interview Questions asked at other Companies

Q1. Suppose you have 10000 US dollars with you, out of which you took a loan of 5000 US Dollars. Now suppose you have purchased two assets of 5000 US Dollars each, one through cash and other through bank loan. How would you show this transactio... read more
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Case Study 

Market sizing and entry strategy

Round 2 - One-on-one 

(2 Questions)

  • Q1. Why do you want to pursue in this role?
  • Q2. How do you do a cold call?
  • Ans. 

    A cold call involves reaching out to potential clients or customers without any prior contact or relationship.

    • Research the company or individual you are calling to tailor your pitch

    • Introduce yourself and explain the purpose of your call

    • Highlight the benefits of your product or service

    • Handle objections professionally and try to schedule a follow-up meeting

    • Follow up with an email or additional information as needed

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. What is commercial due diligence?
  • Ans. 

    Commercial due diligence is the process of evaluating a company's commercial potential and risks before making an investment or partnership.

    • Involves analyzing market trends, competition, customer base, and growth potential

    • Assesses the target company's business model, revenue streams, and key performance indicators

    • Helps investors make informed decisions by identifying potential opportunities and threats

    • May include inter...

  • Answered by AI
  • Q2. How do you handle a difficult client?

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask questions relevant to the role

Senior Associate Interview Questions asked at other Companies

Q1. On an average, how many invoices can you process in a day?
View answer (10)

Consultant Interview Questions & Answers

user image Anonymous

posted on 28 Jan 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Technical 

(7 Questions)

  • Q1. What are the features of Java 8?
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way. For example, (a, b) -> a + b.

    • Functional interfaces are interfaces with a single abstract method, such as java.util.function.Function.

    • Streams provide a way to work with collections of objects in a functional style. For e...

  • Answered by AI
  • Q2. What are generics in Java, and how do they provide benefits?
  • Ans. 

    Generics in Java allow for type-safe collections and classes, providing compile-time type checking and reducing the need for casting.

    • Generics enable the creation of classes, interfaces, and methods that operate on specified types.

    • They provide compile-time type safety, preventing runtime errors due to type mismatches.

    • Generics reduce the need for explicit type casting, making code more readable and maintainable.

    • Example: ...

  • Answered by AI
  • Q3. Streams API coding questions.(3-4 question.)
  • Q4. What are the classes involved from the entity to the controller level, and can you explain the annotations used in each?
  • Ans. 

    Classes and annotations used from entity to controller level in a Java application.

    • Entity classes represent database tables and are annotated with @Entity.

    • Repository classes handle database operations and are annotated with @Repository.

    • Service classes contain business logic and are annotated with @Service.

    • Controller classes handle HTTP requests and are annotated with @Controller.

  • Answered by AI
  • Q5. SQL queries(2-3 questions).
  • Q6. What is the usage of Spring Batch, and how did you implement it in your project? What are its key features?
  • Ans. 

    Spring Batch is a lightweight, comprehensive batch framework designed for robust, scalable batch processing.

    • Spring Batch is used for processing large volumes of data in batch jobs.

    • It provides reusable functions for common batch processing scenarios such as reading, processing, and writing data.

    • Spring Batch can be implemented to handle complex processing logic, error handling, and transaction management.

    • Key features inc...

  • Answered by AI
  • Q7. What is the mechanism of how React works, specifically in relation to the Virtual DOM?(Some Additional questions on React - Theoretical)
  • Ans. 

    React uses Virtual DOM to efficiently update the actual DOM by comparing the changes and only updating what is necessary.

    • React creates a virtual representation of the actual DOM called Virtual DOM.

    • When state or props change, React compares the Virtual DOM with the actual DOM to identify the differences.

    • React then updates only the necessary parts of the actual DOM, minimizing the number of DOM manipulations.

    • This process...

  • Answered by AI
Round 2 - Behavioral 

(4 Questions)

  • Q1. Which design patterns are you familiar with?
  • Ans. 

    I am familiar with design patterns such as Singleton, Factory, Observer, and Strategy.

    • Singleton

    • Factory

    • Observer

    • Strategy

  • Answered by AI
  • Q2. Which design patterns have you used, and how have you implemented them? Please explain.
  • Ans. 

    I have used design patterns such as Singleton, Factory, and Observer in my projects.

    • Implemented Singleton pattern to ensure only one instance of a class exists

    • Utilized Factory pattern to create objects without specifying the exact class

    • Applied Observer pattern to establish a one-to-many dependency between objects

  • Answered by AI
  • Q3. What are threads in the context of programming?
  • Ans. 

    Threads in programming are lightweight processes that can run concurrently within a program.

    • Threads allow for parallel execution of tasks within a program

    • Threads share the same memory space, allowing for efficient communication and data sharing

    • Examples of using threads include multi-threaded web servers and parallel processing in data analysis

  • Answered by AI
  • Q4. Benefits of Spring Boot over Spring?
  • Ans. 

    Spring Boot simplifies Spring application development by providing out-of-the-box features and reducing configuration.

    • Spring Boot reduces boilerplate code by providing default configurations for various components like embedded servers, logging, and security.

    • Spring Boot allows for easier deployment by packaging applications as standalone JAR files with embedded containers.

    • Spring Boot provides a range of starter depende...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. It was basic salary and expectation discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintain a strong foundation regardless of the programming language you are proficient in. The questions primarily centered around your resume and how you have applied those skills in your projects.

Skills evaluated in this interview

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)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 20 Dec 2024

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

It was medium and if you focus you should be able to complete that!

Round 2 - Technical 

(2 Questions)

  • Q1. Heat map and tree map difference and what you did so far in Tableau!
  • Ans. 

    Heat maps display data in colors on a grid, while tree maps show hierarchical data using nested rectangles.

    • Heat maps use colors to represent data values on a grid, while tree maps use nested rectangles to display hierarchical data.

    • In Tableau, I have created heat maps to visualize sales data across different regions, and tree maps to show the sales distribution by product categories.

    • Heat maps are useful for identifying ...

  • Answered by AI
  • Q2. Tool tips use. Types of graph which can help in KPIs
  • Ans. 

    Different types of graphs like bar charts, line graphs, and pie charts can help in visualizing KPIs effectively.

    • Bar charts can be used to compare KPIs across different categories or time periods.

    • Line graphs are useful for showing trends and changes in KPIs over time.

    • Pie charts can display the proportion of each KPI relative to the total.

    • Combination charts can be used to show multiple KPIs in a single graph for comparis

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Cultural fit question and scenario questions.

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)

Deloitte interview questions for popular designations

 Consultant

 (457)

 Analyst

 (353)

 Senior Consultant

 (115)

 Assistant Manager

 (73)

 Associate Analyst

 (70)

 Tax Consultant

 (68)

 Business Analyst

 (63)

 Data Analyst

 (42)

Analyst Interview Questions & Answers

user image Anonymous

posted on 22 Sep 2024

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

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

Round 1 - Aptitude Test 

In the aptitude round there were various sections such as quants, verbal and technical questions based on networking and cloud platforms and some pseudo codes . No coding questions were asked .

Round 2 - Group Discussion 

It was structured group discussion with one panel member and a case study was provided to us .

Round 3 - Technical 

(5 Questions)

  • Q1. Tell me about yourself .
  • Ans. 

    I am a dedicated and detail-oriented analyst with a strong background in data analysis and problem-solving.

    • I have a Bachelor's degree in Statistics and have completed multiple data analysis projects during my studies.

    • I am proficient in using statistical software such as R and Python to analyze data and generate insights.

    • I have experience working with cross-functional teams to develop and implement data-driven strategie...

  • Answered by AI
  • Q2. Tell me about the projects that you have made .
  • Ans. 

    I have worked on various projects including financial analysis, market research, and data visualization.

    • Developed financial models to analyze company performance

    • Conducted market research to identify growth opportunities

    • Created interactive dashboards for data visualization

    • Collaborated with cross-functional teams to implement project recommendations

  • Answered by AI
  • Q3. Puzzles questions
  • Q4. Coding question
  • Q5. Machine learning question

Interview Preparation Tips

Topics to prepare for Deloitte Analyst interview:
  • Data Structures
  • quants
  • logical aptitude
  • technical aptitude
  • Indiabix for aptitude
  • past year questions
  • past interview experiences
Interview preparation tips for other job seekers - Be patient and speak confidently in the interview . Try to express your opinion and approach to tackle problems and questions confidently.

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)

Get interview-ready with Top Deloitte Interview Questions

Analyst Interview Questions & Answers

user image Anonymous

posted on 30 Dec 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Simple quat questions

Round 2 - Technical 

(2 Questions)

  • Q1. Which language you are comfortable in and write code for any sorting algorithm you know
  • Ans. 

    I am comfortable in Java and can write code for sorting algorithms like Bubble Sort, Selection Sort, and Merge Sort.

    • I am proficient in Java and have experience writing code for sorting algorithms.

    • I can implement popular sorting algorithms like Bubble Sort, Selection Sort, and Merge Sort.

    • I have a strong understanding of algorithm complexity and efficiency.

    • I can provide examples of code for sorting algorithms upon reques

  • Answered by AI
  • Q2. What is oops
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPs focuses on creating objects that interact with each other to solve a problem

    • It involves concepts like inheritance, encapsulation, polymorphism, and abstraction

    • Examples of OOPs languages include Java, C++, and Python

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

Jobs at Deloitte

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

I was interviewed in Nov 2024.

Round 1 - Coding Test 

1. Print the duplicate characters from a string. 2. Take two character arrays and check whether character array 2 is a subarray of character array 1.

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on REST APIs, multi threading etc
  • Q2. Questions on Maven, excel handling code, JSON parsing etc
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Topics asked Advanced SQL spark dataproc Bigquery Qliksense Git Hub Any innovations or process optimised or not Google Cloud
Round 2 - Behavioral 

(1 Question)

  • Q1. Bigquery spark hadoop hive questions asked on above topics Why are you changing? what extra can you bring with you? whats motivating you to join Deloitte?

Interview Preparation Tips

Topics to prepare for Deloitte Gcp Data Engineer interview:
  • sql
  • bigquery
  • Spark
  • Hadoop
  • dataproc
  • GCP
Interview preparation tips for other job seekers - prepare well

Top Deloitte Gcp Data Engineer Interview Questions and Answers

Q1. What are the modules you've used in python?
View answer (1)

Gcp Data Engineer Interview Questions asked at other Companies

Q1. GCP Services, What is use of Bigquery? What is Pubsub,Dataflow,cloud storage. Question related previous roles and responsibility.
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Why do we have @functionalInterface if we can make any interface as functional interface if it already has one abstract method?
  • Ans. 

    Functional interfaces provide clarity and enforce single abstract method constraint.

    • Functional interfaces provide clarity to developers by explicitly indicating that the interface is intended to be used as a functional interface.

    • Using @FunctionalInterface annotation helps enforce the single abstract method constraint, preventing accidental addition of more abstract methods.

    • It also allows the compiler to perform additio...

  • Answered by AI
  • Q2. What is comparable and how to implement it?
  • Ans. 

    Comparable is an interface in Java used for comparing objects and sorting collections.

    • Comparable interface is used to define a natural ordering of objects.

    • To implement Comparable, a class must implement the compareTo() method.

    • Example: Implementing Comparable interface in a class to compare instances based on a specific attribute.

  • Answered by AI

Skills evaluated in this interview

Java Spring Boot Developer Interview Questions asked at other Companies

Q1. What is the difference between Spring and Spring Boot?
View answer (2)

Analyst Interview Questions & Answers

user image Anonymous

posted on 4 Oct 2024

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

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

Round 1 - Group Discussion 

20 Mins GD on ESG Compliance

Round 2 - Technical 

(3 Questions)

  • Q1. Internship Experience
  • Ans. 

    I completed a summer internship at a financial firm where I analyzed market trends and created financial models.

    • Conducted market research to identify investment opportunities

    • Utilized Excel and financial software to create models for forecasting

    • Presented findings to senior analysts and managers

    • Collaborated with team members on various projects

  • Answered by AI
  • Q2. Guesstimate on Size of EV Market in India
  • Ans. 

    The EV market in India is estimated to be around 2-3% of total vehicle sales currently.

    • EV sales in India have been steadily increasing due to government incentives and growing environmental awareness.

    • Major players in the Indian EV market include Tata Motors, Mahindra Electric, and Hero Electric.

    • Charging infrastructure is a key factor in the growth of the EV market in India.

    • The government has set a target of 30% EV pene...

  • Answered by AI
  • Q3. What are business processes
  • Ans. 

    Business processes are a series of structured activities that organizations use to achieve specific goals.

    • Business processes involve a series of steps or tasks that are performed in a specific order.

    • They are designed to achieve a particular outcome or result.

    • Business processes can be automated or manual, depending on the organization's needs.

    • Examples include order processing, inventory management, and customer service.

    • ...

  • Answered by AI
Round 3 - HR 

(4 Questions)

  • Q1. Internship Experience
  • Ans. 

    I completed a 6-month internship at a financial consulting firm where I gained experience in financial analysis and market research.

    • Conducted financial analysis on various companies to assess their performance

    • Assisted in preparing client presentations and reports

    • Participated in meetings with clients to discuss investment strategies

    • Utilized financial modeling techniques to forecast future trends

    • Collaborated with team me

  • Answered by AI
  • Q2. Projects from Resume
  • Q3. Guesstimate on Revenue of a Fast Food Restaurant
  • Ans. 

    The revenue of a fast food restaurant can vary greatly depending on factors like location, menu offerings, and customer traffic.

    • Consider the average number of customers served per day

    • Look at the menu prices and estimate the average spend per customer

    • Factor in any special promotions or discounts that may impact revenue

    • Take into account the operating hours of the restaurant and peak times of business

    • Compare with industry

  • Answered by AI
  • Q4. What all parameters would you consider for a companies office location
  • Ans. 

    Parameters for selecting a company's office location include accessibility, cost, amenities, proximity to clients/talent, and safety.

    • Accessibility to public transportation and major highways

    • Cost of real estate and office space in the area

    • Availability of amenities such as restaurants, gyms, and shopping

    • Proximity to clients, partners, and talent pool

    • Safety and security of the neighborhood

    • Potential for future growth and e

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a wow factor in your resume
Prepare for Guesstimates

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 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.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 789 Interviews
BCG Interview Questions
3.7
 • 196 Interviews
Bain & Company Interview Questions
3.8
 • 103 Interviews
View all

Deloitte Reviews and Ratings

based on 17.8k 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 17.8k Reviews and Ratings
Internal Audit Manager

Mumbai

6-10 Yrs

Not Disclosed

Snowflake Data Engineer

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

NetSuite Functional (Senior/ Manager)

Hyderabad / Secunderabad,

Bangalore / Bengaluru

6-11 Yrs

₹ 16-48 LPA

Explore more jobs
Consultant
33.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
21k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
14.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
10.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
7.1k salaries
unlock blur

₹0 L/yr - ₹0 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