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 SQL Data Analyst Interview Questions and Answers

Updated 2 Jul 2024

Deloitte SQL Data Analyst Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Types of Constraints in SQL?
  • Ans. 

    Types of constraints in SQL include primary key, foreign key, unique, check, and not null constraints.

    • Primary key constraint ensures each row in a table is uniquely identified.

    • Foreign key constraint enforces referential integrity between two tables.

    • Unique constraint ensures that all values in a column are unique.

    • Check constraint restricts the values that can be inserted into a column.

    • Not null constraint ensures a colum

  • Answered by AI
  • Q2. How do you optimise the query?
  • Ans. 

    Query optimization involves using indexes, reducing unnecessary joins, and minimizing data retrieval.

    • Use indexes on columns frequently used in WHERE clauses

    • Avoid using SELECT * and only retrieve necessary columns

    • Minimize the use of functions in WHERE clauses

    • Reduce unnecessary joins by using INNER JOIN instead of OUTER JOIN

    • Use EXISTS instead of IN for subqueries

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Big data , Optimization , Python basic , SQL intermediate
  • Q2. Find max and min number without sorting Joins related Big data handling Optimization question
Round 2 - Technical 

(2 Questions)

  • Q1. Schema , python , sql
  • Q2. Case study sql and python based
Round 3 - Case Study 

Sales data from a leading manufacturer

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(6 Questions)

  • Q1. What is spark,explain its ecosystem
  • Q2. What are transformations, and how many types of transformations exist?
  • Q3. Explain about spark job process and its planning
  • Q4. What are the concepts of coalesce and repartition in data processing?
  • Q5. Explain about oom and driverhead memory
  • Q6. What is data skewness
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sql order of execution
  • Ans. 

    SQL order of execution determines the sequence in which different clauses are processed in a query.

    • SQL query is parsed and validated first

    • Next, the query optimizer creates an execution plan

    • Execution plan includes steps like table scans, index scans, joins, etc.

    • Finally, the query is executed and results are returned

  • Answered by AI
  • Q2. Sql question on finding highest salary for each employee where employees and department table are given in each department.

Interview Preparation Tips

Topics to prepare for Ernst & Young Data Engineer interview:
  • SQL
  • Python
  • Pyspark
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

Normal aptitude round

Round 2 - One-on-one 

(2 Questions)

  • Q1. SQL 4 QUESTION 1 BASIC 3 INTERMIDATE
  • Q2. DATA WAREHOUSE DETAILS ITS IMP THEY WORK ON THIS SO ASK ALL INFO ABOUT THIS

Interview Preparation Tips

Interview preparation tips for other job seekers - good experience ...................
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Project related discussions
  • Q2. Meduim level SQl and DSA
Round 2 - One-on-one 

(2 Questions)

  • Q1. This was data modelling round
  • Q2. Design a uber data model
  • Ans. 

    Uber data model design for efficient storage and retrieval of ride-related information.

    • Create tables for users, drivers, rides, payments, and ratings

    • Include attributes like user_id, driver_id, ride_id, payment_id, rating_id, timestamp, location, fare, etc.

    • Establish relationships between tables using foreign keys

    • Implement indexing for faster query performance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQl, Python and data modeling

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Newspaper Ad and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Three sections are there 1) Aptitude Test 2) SQL 3) DSA

Round 2 - Technical 

(2 Questions)

  • Q1. What is DSA , sorting , difference between array and linked list
  • Ans. 

    DSA stands for Data Structures and Algorithms. Sorting is the process of arranging data in a particular order. Array is a data structure that stores elements of the same data type in contiguous memory locations, while linked list is a data structure that stores elements in nodes with pointers to the next node.

    • DSA stands for Data Structures and Algorithms

    • Sorting is the process of arranging data in a particular order

    • Arra...

  • Answered by AI
  • Q2. Written a SQL query
Round 3 - HR 

(2 Questions)

  • Q1. Coding question like add numbers
  • Q2. Experience on your project
  • Ans. 

    I have experience working on various data analysis projects, including market research, customer segmentation, and predictive modeling.

    • Developed predictive models to forecast customer behavior and optimize marketing strategies

    • Conducted market research to identify trends and opportunities for growth

    • Performed customer segmentation analysis to target specific demographics with personalized marketing campaigns

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Power BI Difference between ALL() and ALLSELECTED()
  • Ans. 

    ALL() ignores all filters in the query context, while ALLSELECTED() ignores only filters on columns in the visual.

    • ALL() removes all filters from the specified column or table.

    • ALLSELECTED() removes filters from the specified column or table, but keeps filters on other columns in the visual.

    • Example: ALL('Table') would remove all filters on the 'Table' in the query context.

    • Example: ALLSELECTED('Column') would remove filte...

  • Answered by AI
  • Q2. Excel Difference between COUNT() and COUNTA()
  • Ans. 

    COUNT() counts only numeric values, while COUNTA() counts all non-empty cells.

    • COUNT() counts only cells with numerical values.

    • COUNTA() counts all non-empty cells, including text and errors.

    • Example: COUNT(A1:A5) will count only cells with numbers, while COUNTA(A1:A5) will count all non-empty cells.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Resume based questions like explain the projects that you have done.
  • Q2. Sample dataset questions

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Maxium sub string and reverse a string

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

I applied via campus placement at Lady Shri Ram College for Women, Delhi

Round 1 - Aptitude Test 

Basic English, Quants and Statistics

Round 2 - Group Discussion 

Easy, relevant to pandemic

Round 3 - Technical 

(1 Question)

  • Q1. Python, Tableau, SQL, Stats, ML, all questions easy to medium level
Round 4 - One-on-one 

(2 Questions)

  • Q1. Behavioural Questions
  • Q2. Statistics Case Study

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and organized interview process for the post of Data Analyst

Deloitte Interview FAQs

How many rounds are there in Deloitte SQL Data Analyst interview?
Deloitte interview process usually has 1 rounds. The most common rounds in the Deloitte interview process are Technical.
What are the top questions asked in Deloitte SQL Data Analyst interview?

Some of the top questions asked at the Deloitte SQL Data Analyst interview -

  1. How do you optimise the que...read more
  2. Types of Constraints in S...read more

Tell us how to improve this page.

Deloitte SQL Data Analyst Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k 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
 • 792 Interviews
ZS Interview Questions
3.4
 • 481 Interviews
BCG Interview Questions
3.8
 • 195 Interviews
View all
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.6 L/yr - ₹12.3 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