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
3.8

based on 17.2k Reviews

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 28 Jan 2025

Top Deloitte Interview Questions and Answers

View all 1.6k questions

Deloitte Interview Experiences

Popular Designations

2.8k interviews found

Web Developer Interview Questions & Answers

user image Anonymous

posted on 25 Aug 2024

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

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

What is an aptitude test?
An aptitude test is a standardized test designed to assess a person's ability, skill, or knowledge in a specific area. (aptitude tests):-
1. Verbal Ability: Tests reading comprehension, grammar, and vocabulary skills.
2. Quantitative Ability: Tests mathematical skills, problem-solving, and data analysis.
3. Logical Reasoning: Tests ability to reason, think critically, and solve problems.
4. Technical Skills: Tests knowledge of specific technical skills, such as programming or coding.

Round 2 - Case Study 

Case study:-
I. Introduction:
- Brief overview of the company/organization
- Background information on the industry/market
- Purpose of the case study

II. Problem Statement:-
- Description of the problem or challenge faced by the company
- Key issues and constraints

III. Analysis:-
- SWOT analysis (Strengths, Weaknesses, Opportunities, Threats)
- Market analysis (competitor, customer, market trends)
- Financial analysis (revenue, costs, profitability)

IV. Alternatives and Options:-
- Potential solutions or strategies
- Evaluation of pros and cons

V. Recommendations:-
- Proposed solution or course of action
- Justification and rationale

VI. Implementation:-
- Action plan and timeline
- Resources and budget required

VII. Conclusion:
- Summary of key findings
- Lessons learned and takeaways.

Interview Preparation Tips

Interview preparation tips for other job seekers - Here are some advice for job seekers:

1. Define your goals: Clearly identify the type of job you're looking for and your long-term career aspirations.

2. Update your resume and online profiles: Ensure your resume, LinkedIn profile, and other social media profiles are current and showcase your skills and experience.
3. Networking: Attend industry events, join professional organizations, and connect with people in your field.
4. Practice interviewing: Prepare answers to common interview questions and practice your responses with a friend or mentor.
5. Expand your skills: Continuously update your skills and knowledge to stay competitive in the job market.
6. Stay positive and persistent: Job hunting can be challenging, so it's essential to stay positive and keep applying.

7. Tailor your application: Customize your resume and cover letter for each job application.

8. Follow up: After applying, follow up with the employer to express your interest and inquire about the status of your application.

9. Be open-minded: Consider different types of jobs and industries to find the best fit for your skills and interests.

10. Seek support: Reach out to career counselors, mentors, or job support groups for guidance and encouragement.

Web Developer Interview Questions asked at other Companies

Q1. Check Indices With Given DifferenceYou are given an integer array 'ARR' of size ‘N’ and two integers ‘A’ and ‘B’. You need to find if there are two distinct indices in the array, such that the absolute difference of values on those indices ... read more
View answer (4)

Associate Analyst Interview Questions & Answers

user image Aaron Antony

posted on 21 Nov 2024

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

I applied via Campus Placement

Round 1 - Aptitude Test 

General aptitude tests

Round 2 - Technical 

(2 Questions)

  • Q1. What is IP address
  • Q2. What is powerdrain
Round 3 - HR 

(2 Questions)

  • Q1. About myself and how I'd like to see myself in 5 years
  • Q2. Abut the workspace enviroment
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are closures with examples ?
  • Ans. 

    Closures are functions that have access to their own scope, as well as the scope in which they were defined.

    • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

    • Closures are commonly used in event handlers and callbacks.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

  • Answered by AI
  • Q2. How to get updated content on scroll on e-commerce app?
  • Ans. 

    Use infinite scrolling to fetch new content as user scrolls down the page.

    • Implement infinite scrolling to load more products as user scrolls down

    • Make AJAX calls to fetch new content from the server

    • Update the DOM with the new content dynamically

  • Answered by AI

Skills evaluated in this interview

Top Deloitte Front end Developer Interview Questions and Answers

Q1. how to get updated content on scroll on e-commerce app?
View answer (1)

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)

Software Developer Interview Questions & Answers

user image Prathyusha Devaki

posted on 6 Aug 2024

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

(11 Questions)

  • Q1. What is managed code and unmanaged code
  • Ans. 

    Managed code is code that is executed by the Common Language Runtime (CLR) while unmanaged code is code that is executed directly by the operating system.

    • Managed code is written in high-level languages like C#, VB.NET, and is compiled to Intermediate Language (IL) which is executed by the CLR.

    • Unmanaged code is written in languages like C, C++, and is compiled directly to machine code which is executed by the operating ...

  • Answered by AI
  • Q2. What are different access modifiers
  • Ans. 

    Access modifiers in programming define the scope of a class, method, or variable.

    • Public - accessible from any other class

    • Private - accessible only within the same class

    • Protected - accessible within the same package and subclasses

    • Default (no modifier) - accessible only within the same package

  • Answered by AI
  • Q3. Diff between array and arraylist
  • Ans. 

    Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.

    • Array is a fixed-size collection of elements of the same data type.

    • ArrayList is a resizable collection that can grow or shrink in size dynamically.

    • Arrays can store primitive data types and objects, while ArrayList can only store objects.

    • Arrays use square brackets [] for declaration, while ArrayList is a class in Java's collect...

  • Answered by AI
  • Q4. Diff between string and stringbuilder
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning once created, it cannot be changed. StringBuilder is mutable and allows for modifications.

    • String concatenation in a loop using String can be inefficient due to creating new objects each time. StringBuilder is more efficient for this purpose.

    • String has a fixed length, while StringBuilder can dyna...

  • Answered by AI
  • Q5. Why string is unmutable
  • Ans. 

    Strings are immutable in order to ensure data integrity and security.

    • Immutable strings prevent accidental changes to data

    • Enhances security by preventing data tampering

    • Allows for efficient memory management

  • Answered by AI
  • Q6. What is connection pooling
  • Ans. 

    Connection pooling is a technique used to manage a pool of database connections to improve performance and efficiency.

    • Connection pooling helps reduce the overhead of opening and closing database connections for each request

    • It allows multiple clients to reuse a pre-created set of connections to the database

    • Connection pooling can help improve the scalability and performance of applications that require frequent database

  • Answered by AI
  • Q7. What is diff between action controller and api action controller
  • Ans. 

    Action controller is for web applications, API action controller is for APIs

    • Action controller is used for handling web requests in a traditional web application

    • API action controller is used for handling API requests in a RESTful API

    • API action controller typically returns JSON responses, while action controller may return HTML responses

    • API action controller often has different authentication and authorization mechanisms

  • Answered by AI
  • Q8. What are diff design patterns in sql
  • Ans. 

    Design patterns in SQL are reusable solutions to common problems encountered in database design and development.

    • Singleton Pattern: Ensures a class has only one instance and provides a global point of access to it.

    • Factory Pattern: Creates objects without specifying the exact class of object that will be created.

    • Repository Pattern: Separates the logic that retrieves data from a data source from the business logic that ac...

  • Answered by AI
  • Q9. Triggers, cursors, stored procedures
  • Q10. Repeater controller
  • Q11. Commandbuilder vs command
  • Ans. 

    CommandBuilder is a class used to dynamically create SQL commands, while Command is a pre-defined SQL command.

    • CommandBuilder is used to construct SQL commands at runtime based on user input or conditions.

    • Command is a pre-defined SQL command that is executed as is.

    • CommandBuilder is more flexible and allows for dynamic SQL generation.

    • Command is static and does not change during runtime.

    • Example: CommandBuilder can be used...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are applying as dotnet developer
, prepare well for c# , ado. Net, sql, mvc, api, dotnet core

Skills evaluated in this interview

Top Deloitte Software Developer Interview Questions and Answers

Q1. Find K’th Character of Decrypted StringYou have been given an Encrypted String where repetitions of substrings are represented as substring followed by the count of substrings. Example: String "aabbbcdcdcd" will be encrypted as "a2b3cd3". ... read more
View answer (3)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Deloitte interview questions for popular designations

 Consultant

 (451)

 Analyst

 (356)

 Senior Consultant

 (113)

 Associate Analyst

 (76)

 Assistant Manager

 (72)

 Tax Consultant

 (70)

 Business Analyst

 (64)

 Business Technology Analyst

 (43)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Your day to day activities at current job
  • Ans. 

    My day to day activities involve analyzing business requirements, configuring software, conducting user training, and providing support.

    • Analyzing business requirements to understand client needs

    • Configuring software to meet client specifications

    • Conducting user training sessions to ensure smooth adoption of new systems

    • Providing ongoing support to clients for any issues or questions

  • Answered by AI
  • Q2. Your skills and basic questions on them

Functional Consultant Interview Questions asked at other Companies

Q1. A restaurant is having heavy rush hour in the morning. You are implementing an ERP system for them. What will you do to help them.
View answer (2)

Get interview-ready with Top Deloitte Interview Questions

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain partitioning and coalesce
  • Ans. 

    Partitioning and coalesce are techniques used in data processing to optimize performance and manage data distribution.

    • Partitioning involves dividing data into smaller chunks based on a specified column or criteria, which helps in parallel processing and query optimization.

    • Coalesce is used to reduce the number of partitions by combining smaller partitions into larger ones, which can improve query performance and reduce ...

  • Answered by AI
  • Q2. A medium level SQL query from leetcode

AWS Data Engineer Interview Questions asked at other Companies

Q1. libraries used in ur project and how do you import them
View answer (1)

Jobs at Deloitte

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

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is calculated col and measure
  • Ans. 

    Calculated columns are columns created in Power BI by using DAX formulas, while measures are calculations based on the data model.

    • Calculated columns are static and stored in the data model, while measures are dynamic and calculated on the fly.

    • Calculated columns are used for adding new data to a table, while measures are used for aggregating data or performing calculations.

    • Examples of calculated columns include adding a...

  • Answered by AI
  • Q2. What is numerical range parameter
  • Ans. 

    Numerical range parameter is a parameter that defines a range of numerical values for a specific variable or function.

    • It is used to specify a range of numerical values that a parameter can take.

    • It helps in filtering data based on a specific numerical range.

    • For example, a numerical range parameter can be used to filter sales data for products with prices between $50 and $100.

  • Answered by AI
  • Q3. What is field parameter
  • Ans. 

    A field parameter is a variable that is used to pass values to a function or method.

    • Field parameters are used to customize the behavior of functions or methods.

    • They can be used to filter, sort, or group data in Power BI reports.

    • Examples include filtering data based on a specific date range or sorting data by revenue.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Need detailed study

Skills evaluated in this interview

Top Deloitte Power BI Developer Interview Questions and Answers

Q1. DAX ? WHAT ARE TIME INTELLIGENCE FNCS
View answer (1)

Power BI Developer Interview Questions asked at other Companies

Q1. Types of joins in power Bi & SQL and how it works?
View answer (7)

SAP Fico Consultant interview

user image PSN SAP FICO

posted on 16 Nov 2021

Consultant Interview Questions & Answers

user image Sumitra Ghosh

posted on 12 Jan 2025

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

(1 Question)

  • Q1. What methods do you use to analyze data in EPBCS aside from using forms?

Operations Analyst Interview Questions & Answers

user image Manjusha Manthapuri

posted on 15 Nov 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
4-6 weeks
Result
Not Selected

I applied via Job Portal

Round 1 - HR 

(2 Questions)

  • Q1. Explain about yourself ?
  • Q2. Explain your role and responsibilities?
  • Ans. 

    As an Operations Analyst, I am responsible for analyzing and improving operational processes to increase efficiency and productivity.

    • Analyze operational processes to identify areas for improvement

    • Develop and implement strategies to optimize efficiency

    • Monitor key performance indicators to track progress

    • Collaborate with cross-functional teams to streamline operations

    • Generate reports and present findings to management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I wanted to share some feedback regarding my recent interview experiences. On multiple occasions, my interviews were rescheduled, and after finally completing them, I was informed that my skills didn’t match the role. This has happened several times, which has been frustrating and time-consuming.

I believe clearer communication or a more thorough initial screening process could help both candidates and the company save time.

Operations Analyst Interview Questions asked at other Companies

Q1. What is the entry of interest received in advance?
View answer (9)

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, Auditing 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.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Capgemini Interview Questions
3.8
 • 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
 • 790 Interviews
BCG Interview Questions
3.8
 • 195 Interviews
Bain & Company Interview Questions
3.8
 • 103 Interviews
View all

Deloitte Reviews and Ratings

based on 17.2k 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.2k Reviews and Ratings
Consultant
33k salaries
unlock blur

₹6.2 L/yr - ₹23 L/yr

Senior Consultant
20.7k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
14k salaries
unlock blur

₹3.7 L/yr - ₹12.4 L/yr

Assistant Manager
10k salaries
unlock blur

₹7.8 L/yr - ₹24 L/yr

Manager
7k salaries
unlock blur

₹15.8 L/yr - ₹52 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.9
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