Logo

Get AmbitionBox App

Faster and better experience!

AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Campus placements

      Interviews questions for 2K+ colleges

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
Upload Button Icon Add office photos
logo
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 18.9k Reviews

Play video Play video Video summary

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern
golden leaf award AmbitionBox awards

Top Rated Mega Company - 2024

golden leaf award
  • About
  • Reviews
    18.9k
  • Salaries
    2L
  • Interviews
    2.9k
  • Jobs
    89
  • Benefits
    2.6k
  • Photos
    25
  • Posts
    44

Filter interviews by

Deloitte Consultant Interview Questions and Answers

Updated 14 May 2025

80 Interview questions

A Consultant was asked 4w ago
Q. Explain how you would implement DMS.
Ans. 

DMS (Document Management System) streamlines document storage, retrieval, and management for improved efficiency and compliance.

  • Assess current document workflows to identify inefficiencies.

  • Choose a DMS solution that fits organizational needs, e.g., cloud-based vs. on-premises.

  • Implement a structured folder hierarchy for easy navigation.

  • Train staff on DMS usage to ensure smooth adoption.

  • Establish access controls and...

A Consultant was asked 1mo ago
Q. Explain optimization techniques in PySpark.
Ans. 

Optimization in PySpark enhances performance by improving resource utilization and reducing execution time for big data processing.

  • Use DataFrame API for optimization: DataFrames are optimized for performance compared to RDDs.

  • Leverage Catalyst Optimizer: Automatically optimizes query plans for better execution.

  • Use Broadcast Variables: Efficiently share large read-only data across nodes to reduce data shuffling.

  • Part...

Consultant Interview Questions Asked at Other Companies

asked in Accenture
Q1. An international bank (US based) has been operating in Asia for t ... read more
View answers (4)
asked in Deloitte
Q2. How would you record travel expenses incurred and paid by an empl ... read more
View answers (9)
asked in BCG
Q3. A telecom company with product X, a necessity in the industry, ha ... read more
View answers (4)
asked in EXL Service
Q4. You have 20 red balls, 14 blue balls. You draw out balls, 2 at a ... read more
View answers (3)
asked in EY Global Delivery Services ( EY GDS)
Q5. If an annual policy, billed monthly, is cancelled in June due to ... read more
View answers (6)
View All
A Consultant was asked 1mo ago
Q. Explain the architecture of BigQuery.
Ans. 

BigQuery is a fully-managed, serverless data warehouse that enables scalable analysis of large datasets using SQL.

  • Serverless architecture: No need to manage infrastructure, allowing users to focus on data analysis.

  • Columnar storage: Data is stored in a columnar format, optimizing query performance and reducing I/O.

  • Massively parallel processing: Queries are executed across many servers simultaneously, enhancing spee...

A Consultant was asked 2mo ago
Q. How can you secure APIs without using Spring Security?
Ans. 

Implement API security using token-based authentication and authorization

  • Use token-based authentication like JWT (JSON Web Tokens)

  • Implement custom authentication and authorization logic in the API endpoints

  • Utilize API keys for access control and rate limiting

  • Implement OAuth for secure authorization and delegation of access

What people are saying about Deloitte

View All
clarkkent52
Verified Icon
2w
works at
Accenture
Already got 110 % hike, also got other offers but company only matching the existing offer!!
Recently I was successfully cleared PWC and infosys all interview rounds and in HR discussion they are not ready to give me more , they only ready to match the offer and keep saying you already got the 110% hike on your current CTC! So I said to HR I can't say no to company whose offer I have for just same amount of offer and rejected. How can I grab 150% hike as I also cleared Deloitte all rounds and HR discussion is remaining, Any suggestions??
Got a question about Deloitte?
Ask anonymously on communities.
A Consultant was asked 2mo ago
Q. What are the things we need to be aware of before we start migrating a monolith into microservices?
Ans. 

Considerations before migrating monolith into microservices

  • Understand the current monolith architecture and dependencies

  • Identify the boundaries for microservices and plan the decomposition

  • Ensure proper testing and monitoring strategies are in place

  • Address data management and consistency challenges

  • Prepare for potential performance overhead and increased complexity

A Consultant was asked 2mo ago
Q. How do you implement SQS and SNS in the AWS cloud?
Ans. 

Implementing SQS and SNS in AWS cloud involves creating queues and topics, setting up permissions, and configuring subscriptions.

  • Create an SQS queue and configure its settings

  • Create an SNS topic and configure its settings

  • Set up permissions to allow SQS to send messages to SNS

  • Configure subscriptions to connect the SQS queue to the SNS topic

A Consultant was asked 2mo ago
Q. What is an API gateway?
Ans. 

API gateway is a server that acts as an API front-end, receiving API requests, enforcing throttling and security policies, passing requests to the back-end service, and then passing the response back to the requester.

  • API gateway acts as a single entry point for all API requests

  • It can handle tasks like authentication, authorization, rate limiting, and caching

  • Examples of API gateways include Amazon API Gateway, Apig...

Are these interview questions helpful?
A Consultant was asked 3mo ago
Q. 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. ...

A Consultant was asked 3mo ago
Q. Write a program to remove numbers from an array that occur more than once.
Ans. 

Program to remove duplicate numbers from array of strings

  • Iterate through the array and keep track of the count of each number

  • Remove numbers with count greater than 1 from the array

A Consultant was asked 7mo ago
Q. How do you handle project pressure?
Ans. 

Handling project pressure requires effective time management, communication, delegation, and stress management.

  • Prioritize tasks based on deadlines and importance

  • Communicate with team members and stakeholders about challenges and progress

  • Delegate tasks to team members based on their strengths and workload

  • Practice stress management techniques such as deep breathing or taking short breaks

  • Seek support from mentors or ...

1 2 3 4 5 6 7

Deloitte Consultant Interview Experiences

474 interviews found

Consultant Interview Questions & Answers

user image PRAVEEN PATEL

posted on 22 Feb 2025

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

(5 Questions)

  • Q1. Explain the structure of microservices architecture
  • Add your answer
  • Q2. How to implement SQS and SNS in AWS cloud
  • Ans. 

    Implementing SQS and SNS in AWS cloud involves creating queues and topics, setting up permissions, and configuring subscriptions.

    • Create an SQS queue and configure its settings

    • Create an SNS topic and configure its settings

    • Set up permissions to allow SQS to send messages to SNS

    • Configure subscriptions to connect the SQS queue to the SNS topic

  • Answered by AI
    Add your answer
  • Q3. What are the things which we need to be aware before we start migrating monolith into microservices
  • Ans. 

    Considerations before migrating monolith into microservices

    • Understand the current monolith architecture and dependencies

    • Identify the boundaries for microservices and plan the decomposition

    • Ensure proper testing and monitoring strategies are in place

    • Address data management and consistency challenges

    • Prepare for potential performance overhead and increased complexity

  • Answered by AI
    Add your answer
  • Q4. How to provide security to apis without using spring security
  • Ans. 

    Implement API security using token-based authentication and authorization

    • Use token-based authentication like JWT (JSON Web Tokens)

    • Implement custom authentication and authorization logic in the API endpoints

    • Utilize API keys for access control and rate limiting

    • Implement OAuth for secure authorization and delegation of access

  • Answered by AI
    Add your answer
  • Q5. What is API gateway
  • Ans. 

    API gateway is a server that acts as an API front-end, receiving API requests, enforcing throttling and security policies, passing requests to the back-end service, and then passing the response back to the requester.

    • API gateway acts as a single entry point for all API requests

    • It can handle tasks like authentication, authorization, rate limiting, and caching

    • Examples of API gateways include Amazon API Gateway, Apigee, a...

  • Answered by AI
    Add your answer
Round 2 - Technical 

(5 Questions)

  • Q1. Functional interface
  • Add your answer
  • Q2. Object oriented concepts
  • Add your answer
  • Q3. Stream api
  • Add your answer
  • Q4. Synchronization
  • Add your answer
  • Q5. While loop exceptions
  • Ans. 

    While loop exceptions are errors that occur during the execution of a while loop.

    • Common while loop exceptions include infinite loops, where the loop never terminates.

    • Another exception is when the loop condition is never met, causing the loop to never execute.

    • Handling exceptions in while loops can be done using try-catch blocks to catch and handle errors.

  • Answered by AI
    Add your answer
Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 16 Jan 2025

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

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

Round 1 - One-on-one 

(10 Questions)

  • Q1. Tell me about yourself
  • Add your answer
  • Q2. Write program to check string is palindrom
  • Add your answer
  • Q3. Write programm to Remove number from array who occur more than once
  • Ans. 

    Program to remove duplicate numbers from array of strings

    • Iterate through the array and keep track of the count of each number

    • Remove numbers with count greater than 1 from the array

  • Answered by AI
    Add your answer
  • Q4. String Buffer vs String Builder
  • Ans. 

    String Buffer is synchronized and thread-safe, while String Builder is not synchronized.

    • String Buffer is slower due to synchronization, while String Builder is faster.

    • String Builder should be used in single-threaded scenarios for better performance.

    • String Buffer should be used in multi-threaded scenarios to ensure thread safety.

  • Answered by AI
    Add your answer
  • Q5. If String s="Deloitte"; and String s2=new String("Deloitte"); what will be s1.equals(s2) and if(s1==s2)
  • Ans. 

    s1.equals(s2) will return true as both strings have the same value. s1==s2 will return false as they are different objects.

    • s1.equals(s2) compares the values of the strings, not the memory addresses

    • s1==s2 compares the memory addresses of the strings, not their values

    • Example: s1.equals(s2) will return true in this case because both s1 and s2 have the same value 'Deloitte'

  • Answered by AI
    Add your answer
  • Q6. Why spring boot is better than spring ? Annotations of spring
  • Ans. 

    Spring Boot is better than Spring because it simplifies the development process by providing out-of-the-box configurations and reducing boilerplate code.

    • Spring Boot provides a pre-configured environment for application development, reducing the need for manual configurations.

    • It includes embedded servers like Tomcat, Jetty, or Undertow, making it easier to deploy applications.

    • Spring Boot auto-configures components based...

  • Answered by AI
    Add your answer
  • Q7. Query for count employee in each department
  • Ans. 

    Query to count employees in each department

    • Use SQL query with GROUP BY clause on department column

    • Count the number of employees in each department

    • Retrieve the department name and the count of employees

  • Answered by AI
    Add your answer
  • Q8. How to create react app ? npm commands to create react app
  • Ans. 

    To create a React app using npm commands

    • Use 'npx create-react-app my-app' to create a new React app

    • Navigate into the newly created app directory using 'cd my-app'

    • Start the development server with 'npm start'

  • Answered by AI
    Add your answer
  • Q9. How routing works in react
  • Ans. 

    React routing allows for navigation between different components in a single-page application.

    • React Router is a popular library for handling routing in React applications

    • Routes are defined using <Route> components and nested within a <Router> component

    • Navigation between routes is typically done using <Link> components or programmatic navigation with history object

  • Answered by AI
    Add your answer
  • Q10. Dml dcl and ddl command
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - basic java 8 and spring boot .. I was given almost all answer right except q3 still got rejected
Anonymous

Consultant Interview Questions & Answers

user image Divyank Saraswat

posted on 23 Jan 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Your surname? If you are a lala then surely selected
  • Add your answer
  • Q2. What your father do? They just want to know if you can bring business to them
  • Add your answer
Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 16 Nov 2024

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About my Previous Job
  • Add your answer
  • Q2. Compensation, Location, Project Details, Problem Solving
  • Add your answer
Round 2 - Assignment 

IT is a secret, I can't open that

Round 3 - One-on-one 

(2 Questions)

  • Q1. Why Consulting,
  • Add your answer
  • Q2. About the assignment, location
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well aware of your past experience
Anonymous

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 appeared for an interview 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
    Add your answer
  • 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
    Add your answer
  • Q3. Streams API coding questions.(3-4 question.)
  • Add your answer
  • 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
    Add your answer
  • Q5. SQL queries(2-3 questions).
  • Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • Q4. Benefits of Spring Boot over Spring?
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. It was basic salary and expectation discussion.
  • Add your answer

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

Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 24 Oct 2024

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. What work you have done
  • Add your answer
  • Q2. How you manage critical situation in team explain with example
  • Ans. 

    Managing critical situations in a team involves clear communication, quick decision-making, and fostering collaboration.

    • Clear Communication: I ensure that all team members are informed about the situation and understand their roles. For example, during a project deadline crisis, I held a quick meeting to outline tasks and expectations.

    • Quick Decision-Making: I assess the situation and make informed decisions promptly. I...

  • Answered by AI
    Add your answer
  • Q3. Explain Oracle invenotry
  • Ans. 

    Oracle Inventory is a module within Oracle E-Business Suite that helps organizations track and manage their inventory levels and transactions.

    • Oracle Inventory allows organizations to track items by serial number, lot number, or revision.

    • It helps in managing stock levels, replenishment, and order fulfillment.

    • The module integrates with other Oracle E-Business Suite modules such as Order Management and Purchasing.

    • Oracle I...

  • Answered by AI
    Add your answer
  • Q4. Oracle manufacturing
  • Add your answer
  • Q5. Oracle Quality questions
  • Add your answer

Skills evaluated in this interview

Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 17 Sep 2024

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

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Spark related architecture question
  • Add your answer
  • Q2. Architect a data pipeline
  • Ans. 

    Architecting a data pipeline involves designing a system to collect, process, and analyze data efficiently.

    • Identify data sources and determine how to extract data from them

    • Design a data processing workflow to clean, transform, and enrich the data

    • Choose appropriate tools and technologies for data storage and processing

    • Implement monitoring and error handling mechanisms to ensure data quality and reliability

    • Consider scala...

  • Answered by AI
    Add your answer
  • Q3. Questions around experience
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Questions around spark , python , experience
  • Add your answer
  • Q2. Basic problem statements in python
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover basics and communicate better. Easy going it is.

Skills evaluated in this interview

Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 4 Dec 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. .Net life cycle
  • Add your answer
  • Q2. MVC pattern and Design patterns
  • Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Culture fit overall
  • Add your answer
  • Q2. Change reasons and Future plans
  • Add your answer
Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 2 Feb 2025

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

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Core Java OOPS Multithreading..
  • Add your answer
  • Q2. Codding question for collection like Array list and LinkedList
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Spring related question like annotation POM file, ....
  • Add your answer
  • Q2. Cloud related experience/question
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Previous experience question like project experience...
  • Add your answer
Anonymous

Consultant Interview Questions & Answers

user image Anonymous

posted on 12 Dec 2024

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

(1 Question)

  • Q1. All the questions are related to the job profile. Full Stack.
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. React Js Component Creation and styling the component, API fetch, response modification.
  • Add your answer
Anonymous
More about working at Deloitte
golden leaf award AmbitionBox awards

#9 Best Mega Company - 2022

golden leaf award
  • HQ - London, United Kingdom, United States (USA)
  • Management Consulting
  • 1 Lakh+ Employees (India)
  • IT Services & Consulting
  • Accounting & Auditing

Deloitte Interview FAQs

How many rounds are there in Deloitte Consultant interview?
Deloitte interview process usually has 2-3 rounds. The most common rounds in the Deloitte interview process are Technical, HR and One-on-one Round.
How to prepare for Deloitte Consultant 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 Project Management, SQL, Data Analysis, Data Analytics and Risk Management.
What are the top questions asked in Deloitte Consultant interview?

Some of the top questions asked at the Deloitte Consultant interview -

  1. How would you pass an entry for travel expenses incurred and paid by employee a...read more
  2. What is the journal entry for prepaid expenses and how do you treat ...read more
  3. Your client wants to enter the after sales service market for passenger cars ��...read more
What are the most common questions asked in Deloitte Consultant HR round?

The most common HR questions asked in Deloitte Consultant interview are -

  1. Why are you looking for a chan...read more
  2. What is your family backgrou...read more
  3. What are your salary expectatio...read more
How long is the Deloitte Consultant interview process?

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

Tell us how to improve this page.

Deloitte Interviews By Designations

  • Deloitte Consultant Interview Questions
  • Deloitte Analyst Interview Questions
  • Deloitte Senior Consultant Interview Questions
  • Deloitte Assistant Manager Interview Questions
  • Deloitte Associate Analyst Interview Questions
  • Deloitte Tax Consultant Interview Questions
  • Deloitte Business Analyst Interview Questions
  • Deloitte Data Analyst Interview Questions
  • Show more
  • Deloitte Software Developer Interview Questions
  • Deloitte Senior Analyst Interview Questions

Interview Questions for Popular Designations

  • Senior Consultant Interview Questions
  • Associate Consultant Interview Questions
  • Senior Associate Consultant Interview Questions
  • Lead Consultant Interview Questions
  • Technical Consultant Interview Questions
  • SAP Fico Consultant Interview Questions
  • SAP Abap Consultant Interview Questions
  • SAP MM Consultant Interview Questions
  • Show more
  • SAP Consultant Interview Questions
  • SAP Basis Consultant Interview Questions

Top Skills for Deloitte Consultant

Software Development Interview Questions & Answers
250 Questions
Web Development Interview Questions & Answers
250 Questions
Data Structures Interview Questions & Answers
250 Questions
SQL Interview Questions & Answers
250 Questions
Software Testing Interview Questions & Answers
250 Questions
SAP Interview Questions & Answers
250 Questions

Consultant Interview Questions from Similar Companies

Ernst & Young
Ernst & Young Consultant Interview Questions
3.4
 • 140 Interviews
KPMG India
KPMG India Consultant Interview Questions
3.5
 • 89 Interviews
PwC
PwC Consultant Interview Questions
3.4
 • 76 Interviews
BCG
BCG Consultant Interview Questions
3.7
 • 69 Interviews
McKinsey & Company
McKinsey & Company Consultant Interview Questions
3.9
 • 66 Interviews
Bain & Company
Bain & Company Consultant Interview Questions
3.9
 • 31 Interviews
ZS
ZS Consultant Interview Questions
3.3
 • 17 Interviews
Kearney
Kearney Consultant Interview Questions
3.8
 • 9 Interviews
Protiviti
Protiviti Consultant Interview Questions
3.2
 • 8 Interviews
Alvarez & Marsal
Alvarez & Marsal Consultant Interview Questions
3.4
 • 8 Interviews
View all
Deloitte Consultant Salary
based on 36.6k salaries
₹6.5 L/yr - ₹28 L/yr
10% more than the average Consultant Salary in India
View more details

Deloitte Consultant Reviews and Ratings

based on 2.8k reviews

3.8/5

Rating in categories

3.8

Skill development

3.2

Work-life balance

3.8

Salary

3.9

Job security

3.7

Company culture

3.3

Promotions

3.4

Work satisfaction

Explore 2.8k Reviews and Ratings
Consultant Jobs at Deloitte
Deloitte
Record To Report Consultant

Pune

2-4 Yrs

₹ 4.2-25 LPA

Deloitte
Deloitte - Consultant - IT General Controls (2-7 yrs)

2-7 Yrs

₹ 3.7-27.709 LPA

Explore more jobs
Deloitte Salaries in India
Consultant
36.7k salaries
unlock blur

₹6.5 L/yr - ₹28 L/yr

Senior Consultant
22.9k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
15.5k salaries
unlock blur

₹3.9 L/yr - ₹13 L/yr

Assistant Manager
10.6k salaries
unlock blur

₹8 L/yr - ₹28 L/yr

Manager
7.4k salaries
unlock blur

₹16 L/yr - ₹53.5 L/yr

Explore more salaries
Compare Deloitte with
Accenture

Accenture

3.8
Compare
PwC

PwC

3.4
Compare
Ernst & Young

Ernst & Young

3.4
Compare
Cognizant

Cognizant

3.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Deloitte Interview Questions >
  • Deloitte Consultant Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Campus Placements
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter