Upload Button Icon Add office photos
Engaged 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

Filter interviews by

Deloitte Analyst Interview Questions and Answers for Freshers

Updated 17 Jun 2025

Deloitte Interview Experiences

59 interviews found

Analyst Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

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

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

Round 1 - Aptitude Test 

It was easy and it consists of 3 section

Round 2 - Group Discussion 

Just they gave a topic we have to speak for 10 minutes

Round 3 - HR 

(5 Questions)

  • Q1. Will you able to relocate
  • Ans. 

    Yes, I am willing to relocate for the right opportunity.

    • I am open to relocating for the right job opportunity

    • I have relocated in the past for career advancement

    • I am flexible and willing to move for the right role

  • Answered by AI
  • Q2. What was your strength
  • Q3. Introduce you self
  • Q4. Are you comfortable to work in night shits
  • Ans. 

    I am comfortable working night shifts, as I understand their importance in ensuring continuous operations and support.

    • Adaptability: I have previously worked night shifts in a project where I had to coordinate with international teams across different time zones.

    • Focus and Productivity: I find that I can maintain high levels of focus during night shifts, as there are fewer distractions compared to daytime hours.

    • Commitmen...

  • Answered by AI
  • Q5. Have you done any certifications

Analyst Interview Questions & Answers

user image Anonymous

posted on 6 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It's combination of mcqs and 2 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Write a program to find biggest of 3
  • Ans. 

    Program to find the biggest of 3 numbers

    • Create a function that takes in 3 numbers as input

    • Compare the numbers to find the biggest one

    • Return the biggest number as output

  • Answered by AI
  • Q2. About OOps concepts

Analyst Interview Questions Asked at Other Companies for Fresher

asked in Deloitte
Q1. Reverse a Number Problem Statement Given an integer 'N', write a ... read more
asked in Capgemini
Q2. What will be the output of the following pseudocode? #include Int ... read more
Q3. Describe a strategy to win a number game where players alternate ... read more
asked in eClerx
Q4. What would you do if a set of boxes suddenly switched off?
Q5. Given a tank with liquid, with inflow U and outflow Kx (where x i ... read more

Analyst Interview Questions & Answers

user image Anonymous

posted on 10 Dec 2024

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

I appeared for an interview in Jun 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Sort employee by name using java8
  • Ans. 

    Use Java 8 streams and lambda expressions to sort a list of employees by name.

    • Create a list of Employee objects with names.

    • Use stream() method to convert the list to a stream.

    • Use sorted() method with Comparator.comparing() to sort by name.

    • Collect the sorted stream back to a list.

  • Answered by AI
  • Q2. What is immutable
  • Ans. 

    An immutable object is an object whose state cannot be modified after it is created.

    • Immutable objects are often used in functional programming to ensure data integrity.

    • Examples of immutable objects include String, Integer, and Tuple in Python.

    • Immutable objects are thread-safe and can be shared across multiple threads without the risk of data corruption.

  • Answered by AI
  • Q3. What is monolithic andmicroservices
  • Ans. 

    Monolithic architecture is a single-tiered software application where all components are tightly coupled, while microservices architecture is a distributed approach where the application is broken down into smaller, independent services.

    • Monolithic architecture: all components are tightly coupled in a single-tiered application

    • Microservices architecture: application is broken down into smaller, independent services

    • Monoli...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. System design of university
  • Ans. 

    The system design for a university involves various components such as student information systems, course management systems, and communication platforms.

    • Student information systems to manage student records, registration, and academic progress

    • Course management systems for scheduling classes, assigning instructors, and tracking grades

    • Communication platforms for students, faculty, and staff to interact and share inform...

  • Answered by AI
  • Q2. Angular form code, sql joins

Skills evaluated in this interview

Analyst Interview Questions & Answers

user image Manish Singh

posted on 6 Sep 2024

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

(2 Questions)

  • Q1. Tell me about your work ?
  • Ans. 

    I work as an Analyst, conducting data analysis and providing insights to support decision-making.

    • Conducting data analysis to identify trends and patterns

    • Creating reports and presentations to communicate findings

    • Collaborating with stakeholders to understand business needs

    • Using statistical tools and software to analyze data

    • Making recommendations based on data-driven insights

  • Answered by AI
  • Q2. How do you justify your billing
  • Ans. 

    I justify my billing by providing detailed breakdown of services rendered and time spent on each task.

    • Provide itemized list of services provided

    • Include time spent on each task

    • Explain any additional charges or fees

    • Offer discounts or promotions if applicable

  • Answered by AI

What people are saying about Deloitte

View All
a data engineer
2w
Salary discusssion suggestion
Hi everyone, I have an offer from Deloitte as a data engineer for 15 CTC (all fix) + 10% variable I still have some time left on my notice period. Should I try for more offers and ask Deloitte to match? Yoe 3 CCTC : 6
Got a question about Deloitte?
Ask anonymously on communities.

Analyst Interview Questions & Answers

user image Anonymous

posted on 13 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. How are you
  • Q2. Tell me something about yourslef

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare all the best

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++

Analyst Interview Questions & Answers

user image Raunak Kumar

posted on 11 Jun 2025

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. What is the process to reverse a string?
  • Ans. 

    Reversing a string involves rearranging its characters in the opposite order, from last to first.

    • Use a loop to iterate through the string from the end to the beginning. Example: 'hello' becomes 'olleh'.

    • Utilize built-in functions in programming languages. Example in Python: 'hello'[::-1] results in 'olleh'.

    • Convert the string to a list of characters, reverse the list, and join it back. Example: list('hello')[::-1] gives ...

  • Answered by AI
  • Q2. What are the concepts of Object-Oriented Programming (OOP) and its pillars?
  • Ans. 

    Object-Oriented Programming (OOP) is a programming paradigm based on objects and classes, emphasizing code reusability and organization.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the ...

  • Answered by AI
  • Q3. Puzzle question related to three bulbs commonly available on GeeksforGeeks?
  • Q4. Given an array of integers and a target sum, find two numbers in the array that add up to the target sum using the two-pointer technique.
  • Ans. 

    Use the two-pointer technique to find two numbers in an array that sum to a target value.

    • Sort the array to enable the two-pointer technique.

    • Initialize two pointers: one at the start (left) and one at the end (right) of the array.

    • While left < right, calculate the sum of the values at both pointers.

    • If the sum equals the target, return the values.

    • If the sum is less than the target, move the left pointer to the right to...

  • Answered by AI
  • Q5. What actions would you take if you were appointed as a team lead?
  • Ans. 

    As a team lead, I would focus on communication, collaboration, and continuous improvement to enhance team performance.

    • Establish clear communication channels to ensure everyone is informed and engaged.

    • Set measurable goals and objectives to align the team's efforts with organizational priorities.

    • Encourage collaboration by organizing regular team meetings and brainstorming sessions.

    • Provide mentorship and support to team m...

  • Answered by AI
Are these interview questions helpful?

Analyst Interview Questions & Answers

user image Anonymous

posted on 16 Oct 2024

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

Questions were fairly easy

Round 2 - HR 

(2 Questions)

  • Q1. Questions from resume
  • Q2. Guesstimates based questions

Analyst Interview Questions & Answers

user image Anonymous

posted on 1 Mar 2024

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was a bit tough, it consisted of 60 questions with negative marking as well.

Round 2 - Case Study 

It was a basic case study round related to the expansion of a rural bank into urban areas.

Round 3 - Technical 

(1 Question)

  • Q1. Related to CV, graduation, internships and projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on your core graduation concepts.

Analyst Interview Questions & Answers

user image SACHIN GOYAL

posted on 14 Oct 2024

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

Hackerearth coding round was there and then techniacal

Deloitte Interview FAQs

How many rounds are there in Deloitte Analyst interview for freshers?
Deloitte interview process for freshers usually has 2-3 rounds. The most common rounds in the Deloitte interview process for freshers are Aptitude Test, Technical and One-on-one Round.
How to prepare for Deloitte Analyst interview for freshers?
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 Communication Skills, Technical Skills, B.E, B.Tech and C.
What are the top questions asked in Deloitte Analyst interview for freshers?

Some of the top questions asked at the Deloitte Analyst interview for freshers -

  1. Who regulates Markets in US? Responsibilities of their Market regulat...read more
  2. Idiot, rascal, dumbo... These are the kind of words your manager says to you on...read more
  3. How to find Largest element in the array wid most efficien...read more
What are the most common questions asked in Deloitte Analyst HR round for freshers?

The most common HR questions asked in Deloitte Analyst interview are for freshers -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. Why should we hire y...read more
How long is the Deloitte Analyst interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 33 interview experiences

Difficulty level

Easy 35%
Moderate 61%
Hard 4%

Duration

Less than 2 weeks 64%
2-4 weeks 14%
4-6 weeks 23%
View more

Analyst Interview Questions from Similar Companies

PwC Analyst Interview Questions
3.3
 • 22 Interviews
Mercer Analyst Interview Questions
3.7
 • 11 Interviews
ZS Analyst Interview Questions
3.3
 • 7 Interviews
BCG Analyst Interview Questions
3.7
 • 2 Interviews
View all
Deloitte Analyst Salary
based on 16.5k salaries
₹5 L/yr - ₹12 L/yr
20% more than the average Analyst Salary in India
View more details

Deloitte Analyst Reviews and Ratings

based on 1.5k reviews

3.9/5

Rating in categories

3.8

Skill development

3.5

Work-life balance

3.6

Salary

3.9

Job security

3.9

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 1.5k Reviews and Ratings
Analyst

Thane

0-3 Yrs

Not Disclosed

Explore more jobs
Consultant
39.8k salaries
unlock blur

₹10 L/yr - ₹21.5 L/yr

Senior Consultant
24.7k salaries
unlock blur

₹16.5 L/yr - ₹33.2 L/yr

Analyst
16.5k salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Assistant Manager
11.2k salaries
unlock blur

₹12 L/yr - ₹22 L/yr

Manager
7.9k salaries
unlock blur

₹24.5 L/yr - ₹43.5 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.7
Compare

PwC

3.3
Compare

Ernst & Young

3.4
Compare

Cognizant

3.7
Compare
write
Share an Interview