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

Analyst Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2024

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

Python sdk dsk java c c++

Top Deloitte Analyst Interview Questions and Answers

Q1. Reverse of a numberWrite a program to generate the reverse of a given number N. Print the corresponding reverse number. Note : If a number has trailing zeros, then its reverse will not include them. For e.g., reverse of 10400 will be 401 in... read more
View answer (2)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are 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. Fibonacci number is calculated u... read more
View answer (5)
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 Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Swift concepts, syntax
Round 2 - Behavioral 

(1 Question)

  • Q1. About projects, questions related to various scenarios
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

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)

Dflow Interview Questions & Answers

user image Anonymous

posted on 14 Nov 2024

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

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

Round 1 - Aptitude Test 

60 MCQS AND 2 CODING QUESTION EASY AND MEDIUM

Round 2 - Technical 

(2 Questions)

  • Q1. Purly based on resume
  • Q2. Power bi , Azure etc
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on baisc salesforce from every aspects
Round 2 - Technical 

(1 Question)

  • Q1. Same as technical 1
Round 3 - Behavioral 

(1 Question)

  • Q1. Logic question, project related questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussed

Top Deloitte Salesforce Developer Interview Questions and Answers

Q1. Write a trigger to update contact when accounts phone changed.
View answer (5)

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (5)

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
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain the architecture & unique characteristics of Snowflake
  • Ans. 

    Snowflake is a cloud-based data warehousing platform with unique features like separation of storage and compute, automatic scaling, and data sharing capabilities.

    • Snowflake uses a unique architecture with separate layers for storage, compute, and services, allowing for independent scaling of each component.

    • It uses virtual warehouses to separate compute resources, enabling users to scale up or down based on workload req...

  • Answered by AI
  • Q2. Define Time Travel and how it helps .
  • Ans. 

    Time Travel in Snowflake allows users to query historical data as it existed at a specific point in time.

    • Time Travel in Snowflake enables users to access and query data as it existed at a specific point in the past.

    • It helps in auditing, compliance, and debugging by allowing users to track changes and view historical data.

    • Users can specify a timestamp or a statement ID to retrieve data from a specific point in time.

    • Time...

  • Answered by AI
  • Q3. How to set data retention time as 0 .
  • Ans. 

    To set data retention time as 0 in Snowflake, you can use the ALTER TABLE command with the SET option.

    • Use ALTER TABLE command with SET option to modify the data retention time to 0.

    • Syntax: ALTER TABLE table_name SET DATA_RETENTION_TIME = 0;

    • Example: ALTER TABLE sales SET DATA_RETENTION_TIME = 0;

  • Answered by AI
  • Q4. Explain Stages and stored procedure.
  • Ans. 

    Stages are logical groupings of tasks in a data pipeline, while stored procedures are precompiled SQL code for repeated use.

    • Stages are used to organize tasks in a data pipeline, such as extraction, transformation, and loading.

    • Stored procedures are precompiled SQL code that can be reused multiple times for efficiency.

    • Stages help in managing and monitoring the flow of data through different processing steps.

    • Stored proced...

  • Answered by AI
Round 2 - Technical 

(6 Questions)

  • Q1. Why snowflake is better than other cloud datawarehouse?
  • Ans. 

    Snowflake offers unique architecture with separation of storage and compute, automatic scaling, and support for diverse workloads.

    • Snowflake's architecture separates storage and compute, allowing for independent scaling and cost optimization.

    • Snowflake automatically handles infrastructure management, reducing the need for manual tuning and maintenance.

    • Snowflake supports diverse workloads, including data warehousing, data...

  • Answered by AI
  • Q2. Migration in Snowflake and the process
  • Ans. 

    Migration in Snowflake involves moving data and objects from one environment to another using various methods.

    • Use Snowflake's built-in tools like SnowSQL, Snowpipe, and Snowflake Data Migration Service for seamless migration

    • Consider factors like data volume, complexity, and downtime requirements when planning migration

    • Test the migration process thoroughly to ensure data integrity and consistency

    • Monitor the migration pr...

  • Answered by AI
  • Q3. Ingestion Part in Snowflake
  • Ans. 

    Ingestion in Snowflake involves loading data into the platform for analysis and processing.

    • Use Snowflake's COPY INTO command to load data from external sources like S3, Azure Blob Storage, or Google Cloud Storage.

    • Consider using Snowpipe for continuous data ingestion from streaming sources.

    • Utilize Snowflake's Snowpark for data ingestion and processing using programming languages like Scala or Java.

  • Answered by AI
  • Q4. What are the connectors in Snowflake.
  • Ans. 

    Connectors in Snowflake are used to integrate with various data sources and tools for seamless data loading and querying.

    • Snowflake JDBC connector for connecting to Snowflake using Java applications

    • Snowflake ODBC connector for connecting to Snowflake using ODBC-compliant applications

    • Snowflake Python connector for connecting to Snowflake using Python scripts

    • Snowflake Spark connector for integrating Snowflake with Apache ...

  • Answered by AI
  • Q5. What are the types of security in Snowflake?
  • Ans. 

    Snowflake offers multiple layers of security including network security, data encryption, and access control.

    • Network security: Snowflake uses Virtual Private Cloud (VPC) peering, IP whitelisting, and multi-factor authentication to secure network communication.

    • Data encryption: Snowflake encrypts data at rest and in transit using industry-standard encryption algorithms.

    • Access control: Snowflake provides role-based access...

  • Answered by AI
  • Q6. Tough SQL Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare with SQL , Understanding to be good in Snowflake area.

Skills evaluated in this interview

Top Deloitte Snowflake Data Engineer Interview Questions and Answers

Q1. Why snowflake is better than other cloud datawarehouse?
View answer (1)

Snowflake Data Engineer Interview Questions asked at other Companies

Q1. What are the performance tuning options in snowflake?
View answer (1)

Get interview-ready with Top Deloitte Interview Questions

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Covering all Angular and front end concepts
Round 2 - One-on-one 

(1 Question)

  • Q1. Angular Concepts and live coding
Round 3 - Technical 

(1 Question)

  • Q1. Javascript concepts in-depth

Top Deloitte Senior Software Engineer Interview Questions and Answers

Q1. How to handle million of data which need to be save in the DB?
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

Jobs at Deloitte

View all
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 May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Table formats and health care services

Round 2 - Coding Test 

Health coding test of Business perpuse

Interview Preparation Tips

Topics to prepare for Deloitte IT and Non IT Recruiter interview:
  • US Healthcare
  • medical coding
  • Operating Systems
  • Quality Assurance
  • Reporting
  • Manual Testing
  • Lab
  • Web Technologies
  • Non IT Recruitment
  • Non Voice Process
  • Non Destructive Testing
  • Functional Testing
  • Helpdesk Management
  • Documentation
  • Communication Skills
  • Solid Works
  • Project Management
  • Database Management
  • institutional sales
  • Business Development
  • Business Objects
  • Business Analysis
  • Business Planning
  • Team Building
  • Coordination
  • Quality Analysis
  • Quality Control
  • Design
  • Production
  • Interpersonal Skills
Interview preparation tips for other job seekers - Group discussion and improve the company development

IT and Non IT Recruiter Interview Questions asked at other Companies

Q1. Tell me about Warangal.
View answer (1)

GTA Interview Questions & Answers

user image Anonymous

posted on 20 Jul 2024

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

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

Round 1 - Aptitude Test 

Quants verbal and data interpation with versant

Round 2 - Technical 

(2 Questions)

  • Q1. About yourself, self introduction
  • Q2. Questions about resume

Interview Preparation Tips

Interview preparation tips for other job seekers - good

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Jul 2024

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

I applied via Walk-in and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Different types of assert
  • Ans. 

    Different types of assert include assert equals, assert true, assert false, assert not null, and assert not same.

    • Assert equals: Compares two values for equality

    • Assert true: Checks if a condition is true

    • Assert false: Checks if a condition is false

    • Assert not null: Verifies that a value is not null

    • Assert not same: Verifies that two objects do not refer to the same object

  • Answered by AI
  • Q2. Different types of coats
  • Ans. 

    There are various types of coats, including trench coats, pea coats, duffle coats, and overcoats.

    • Trench coat

    • Pea coat

    • Duffle coat

    • Overcoat

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all the basics of selenium

Top Deloitte QA Engineer Interview Questions and Answers

Q1. How to locate a link and perform click on all the links
View answer (1)

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Describe your job role and O2c process in details
  • Q2. Can item having different ship set be of different inventory
  • Ans. 

    Yes, items with different ship sets can be in different inventory

    • Items with different ship sets can be stored in different locations or warehouses

    • This allows for better organization and tracking of inventory

    • For example, high-demand items can be stored in a warehouse closer to customers for faster shipping

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Things asked were simple yet they wanted multiple modules knowledge

Oracle SCM Functional Consultant Interview Questions asked at other Companies

Q1. Defined flexifields in operation unit level, business functionalities.
View answer (2)

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.7k 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.7k Reviews and Ratings
Assistant Manager

Hyderabad / Secunderabad,

Bangalore / Bengaluru

+1

4-10 Yrs

₹ 12-15 LPA

Credit Risk Specialist

Mumbai,

Hyderabad / Secunderabad

+1

4-10 Yrs

Not Disclosed

Senior Regulatory Reporting Associate

Hyderabad / Secunderabad,

Bangalore / Bengaluru

+1

4-10 Yrs

Not Disclosed

Explore more jobs
Consultant
33.3k salaries
unlock blur

₹6.3 L/yr - ₹23.3 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
10k 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