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 24 Feb 2025

Top Deloitte Interview Questions and Answers

View all 1.6k questions

Deloitte Interview Experiences

Popular Designations

2.9k interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics in kotlin
  • Q2. Android basics questions

Top Deloitte Senior Consultant Interview Questions and Answers

Q1. Is Javascript a single/multi threaded language? If single threaded then how does backend calls work?
View answer (1)

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)

Analyst Interview Questions & Answers

user image Anonymous

posted on 11 Jun 2024

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

(2 Questions)

  • Q1. Sorting of Array?
  • Ans. 

    Sorting of array involves arranging elements in a specific order.

    • Use built-in sorting functions like sort() in programming languages.

    • Specify the sorting criteria such as alphabetical order or numerical order.

    • Consider the complexity of the sorting algorithm for efficiency.

    • Examples: Sorting an array of names alphabetically, sorting an array of numbers in ascending order.

  • Answered by AI
  • Q2. Delete one element from the LinkedList
  • Ans. 

    To delete an element from a LinkedList, update the previous node's next pointer to skip the node to be deleted.

    • Traverse the LinkedList to find the node to be deleted

    • Update the previous node's next pointer to skip the node to be deleted

    • Adjust the pointers accordingly to maintain the integrity of the LinkedList

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. When can I join?
  • Q2. What is the ECTC?
  • Ans. 

    ECTC stands for Estimated Cost to Company, which is the total cost incurred by a company in employing an individual.

    • ECTC includes salary, benefits, bonuses, and any other expenses related to the employee.

    • It helps companies budget and plan for the total cost of hiring and retaining employees.

    • Employers use ECTC to determine the financial impact of hiring a new employee or giving raises to existing employees.

  • 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 (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
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What did you do in your current job role?
Round 2 - Technical 

(2 Questions)

  • Q1. A dataset given to me and they ask to make a visualization report
  • Q2. Sql joins, email analysis, website analysis
Round 3 - Aptitude Test 

Eng test and aptitude test

Round 4 - One-on-one 

(1 Question)

  • Q1. Situation types questions to judge your aproach

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)

Analyst Interview Questions & Answers

user image Anonymous

posted on 9 Sep 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - HR 

(2 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 for data analysis.

    • I have experience in conducting market research and creating reports to help businesses make informed decisions.

    • I am a q...

  • Answered by AI
  • Q2. Golden rules of Accounting
  • Ans. 

    Golden rules of accounting are basic principles that guide the process of recording financial transactions.

    • The three golden rules of accounting are: Debit what comes in, Credit what goes out, Debit the receiver, Credit the giver, Debit all expenses and losses, Credit all incomes and gains.

    • These rules help ensure that financial transactions are accurately recorded and classified in the accounting system.

    • For example, whe...

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

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
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

60 Apti and tech mcqs followed by 2 very easy string and array questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in object-oriented programming languages like Java allows for polymorphism.

  • Answered by AI
  • Q2. Swap two numbers in c++
  • Ans. 

    Swap two numbers in C++ using a temporary variable

    • Declare two variables a and b

    • Create a temporary variable temp

    • Assign the value of a to temp

    • Assign the value of b to a

    • Assign the value of temp to b

  • Answered by AI
  • Q3. SQL join query syntax and example
  • Ans. 

    SQL join query syntax and example

    • SQL join is used to combine rows from two or more tables based on a related column between them

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI

Skills evaluated in this interview

Technology Analyst Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
Add answer

Get interview-ready with Top Deloitte Interview Questions

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

(5 Questions)

  • Q1. Basic screening of the all the devops concepts
  • Q2. Coverd all the tools which i worked
  • Q3. Github kubernates docker
  • Q4. Promotous and grafana
  • Q5. Terraform and opa tools

Senior Devops Engineer Interview Questions asked at other Companies

Q1. What are Terraform life cycles ? and how do we use them ?
View answer (3)

Jobs at Deloitte

View all

Assistant Manager Interview Questions & Answers

user image Roshani Kharche

posted on 11 Mar 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Agile related questions
  • Q2. BA scenario based questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Profile related questions
  • Q2. Program management questions

Top Deloitte Assistant Manager Interview Questions and Answers

Q1. Explain how you test a change management control when the application doesn't store the updates log.
View answer (2)

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (86)

Analyst interview

user image Aim2Crack

posted on 16 Nov 2021

Senior Associate Interview Questions & Answers

user image Deboleena Barman Roy

posted on 16 May 2024

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

(1 Question)

  • Q1. Communication test which is vry imp
Round 2 - Technical 

(1 Question)

  • Q1. Related to work you are doing in field

Senior Associate Interview Questions asked at other Companies

Q1. On an average, how many invoices can you process in a day?
View answer (10)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Spring boot conceptual questions
  • Q2. Questions on Microservices

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)

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.8

Job security

3.8

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 17.6k Reviews and Ratings
SAP FICA Consultant

Hyderabad / Secunderabad,

Bangalore / Bengaluru

+1

3-10 Yrs

Not Disclosed

sap CPQ Developer

Hyderabad / Secunderabad,

Bangalore / Bengaluru

+1

2-9 Yrs

Not Disclosed

E Commerce Business Analyst

Hyderabad / Secunderabad,

Gurgaon / Gurugram

+1

2-5 Yrs

Not Disclosed

Explore more jobs
Consultant
33.3k salaries
unlock blur

₹6.3 L/yr - ₹23.2 L/yr

Senior Consultant
21k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
14.3k salaries
unlock blur

₹3.8 L/yr - ₹12.6 L/yr

Assistant Manager
10.1k salaries
unlock blur

₹7.8 L/yr - ₹24 L/yr

Manager
7.1k salaries
unlock blur

₹16 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