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 10 Mar 2025

Top Deloitte Interview Questions and Answers

View all 1.7k questions

Deloitte Interview Experiences

Popular Designations

2.8k interviews found

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

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

Round 1 - Technical 

(8 Questions)

  • Q1. How much exp in docker?
  • Ans. 

    I have 2 years of experience working with Docker in various projects.

    • 2 years of experience working with Docker in various projects

    • Proficient in creating Docker containers, managing images, and orchestrating containers using Docker Compose

    • Familiar with Docker Swarm and Kubernetes for container orchestration

    • Experience in troubleshooting Docker-related issues and optimizing container performance

  • Answered by AI
  • Q2. Do you have exp in Kubernetes?
  • Ans. 

    Yes, I have experience in Kubernetes.

    • I have worked on deploying and managing applications on Kubernetes clusters.

    • I am familiar with creating and managing Kubernetes resources such as pods, deployments, services, and ingresses.

    • I have experience in using tools like kubectl and Helm for interacting with Kubernetes clusters.

    • I have implemented CI/CD pipelines using Kubernetes for automated deployment and scaling of applicat

  • Answered by AI
  • Q3. What is OOP?
  • Ans. 

    OOP stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOP focuses on creating objects that contain data and methods to manipulate that data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOP.

    • Examples of OOP languages include Java, C++, and Python.

  • Answered by AI
  • Q4. Types of polymorphism
  • Ans. 

    Polymorphism in Java refers to the ability of a method to do different things based on the object it is acting upon.

    • Types of polymorphism in Java include method overloading and method overriding.

    • Method overloading is when multiple methods have the same name but different parameters.

    • Method overriding is when a subclass provides a specific implementation of a method that is already defined in its superclass.

  • Answered by AI
  • Q5. Thread in java
  • Ans. 

    Threads in Java allow multiple tasks to run concurrently within a single program.

    • Threads are lightweight sub-processes that share the same memory space.

    • They are used to improve performance by allowing tasks to run simultaneously.

    • Examples include creating a new thread using the Thread class or implementing the Runnable interface.

  • Answered by AI
  • Q6. Knowledge in which spring modules
  • Q7. What is spring profile
  • Ans. 

    Spring profile is a way to segregate parts of your application configuration and make it only available in certain environments.

    • Spring profiles allow you to define different configurations for different environments such as development, testing, and production.

    • You can use @Profile annotation to specify which beans should be loaded based on the active profile.

    • Profiles can be activated in various ways such as through app...

  • Answered by AI
  • Q8. What is @PreAuthorize and @PostAuthorize
  • Ans. 

    Annotations used in Spring Security to apply authorization rules before and after a method is called.

    • Used in Spring Security to define authorization rules

    • @PreAuthorize is used to apply authorization rules before a method is called

    • @PostAuthorize is used to apply authorization rules after a method is called

    • Both annotations support SpEL expressions for defining rules

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Deloitte Java Developer interview:
  • Basics in java
  • Spring security
  • Spring Boot
  • Docker
  • Cloud Computing

Top Deloitte Java Developer Interview Questions and Answers

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
View answer (3)

Java Developer 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
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. No any no any questions for sharing.
  • Q2. Nothing questions for sharing
  • Q3. Nothing to share have for interview
  • Q4. Nothing to share for interview
  • Q5. Nothing have to sharing

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing for advice to job seekers.

Top Deloitte Software Developer Interview Questions and Answers

Q1. Find K'th Character of Decrypted String You are given an encrypted string where repeated substrings are represented by the substring followed by its count. Your task is to find the K'th character of the decrypted string. The decrypted strin... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Deloitte Interview Questions and Answers for Freshers
illustration image

Front end Developer Interview Questions & Answers

user image Biswojit Nayak

posted on 8 Feb 2025

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Jan 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. Hoisting concept with examples and guess the output
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted.

    • Example: console.log(myVar); var myVar = 10; // Output: undefined

    • Example: console.log(myFunc()); function myFunc() { return 'Hello!'; } // Output: Hello!

  • Answered by AI
  • Q2. Map functionality with a call back function
  • Ans. 

    Using map function to apply a callback function to each element in an array

    • Map function is used to iterate over an array and apply a callback function to each element

    • The callback function can perform operations on each element and return a new value

    • Example: arr.map(item => item * 2) will double each element in the array

  • Answered by AI
  • Q3. Copy object, spread operator usage . Deep copy, sallow copy
  • Q4. Flexbox vs grid, dom, box model,
  • Ans. 

    Flexbox is best for one-dimensional layouts, Grid is best for two-dimensional layouts, DOM is the structure of a webpage, Box model is the layout of elements.

    • Flexbox is best for creating one-dimensional layouts like navigation bars or sidebars.

    • Grid is best for creating two-dimensional layouts like grids of images or cards.

    • DOM (Document Object Model) is the structure of a webpage, representing the elements as objects.

    • Bo...

  • Answered by AI
  • Q5. React optimization, why React,

Top Deloitte Front end Developer Interview Questions and Answers

Q1. How to pass data in components using Vue js and react js?
View answer (1)

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Sprint velocity and sprint capacity difference
  • Ans. 

    Sprint velocity is the amount of work completed in a sprint, while sprint capacity is the total amount of work a team can handle in a sprint.

    • Sprint velocity is a measure of how much work a team can complete in a sprint based on past performance.

    • Sprint capacity is the total amount of work a team is capable of completing in a sprint, taking into account team size, availability, and skills.

    • Velocity helps in predicting how...

  • Answered by AI
  • Q2. How do you calculate sprint velocity and sprint capacity
  • Ans. 

    Sprint velocity is calculated by summing up the story points completed in a sprint. Sprint capacity is the total story points a team can commit to in a sprint.

    • Sprint velocity is calculated by adding up the story points completed in the previous sprints and dividing by the number of sprints.

    • Sprint capacity is determined by the team's historical velocity and their availability for the upcoming sprint.

    • For example, if a te...

  • Answered by AI
  • Q3. What are the common enggineering practices used in daily life at work
  • Ans. 

    Common engineering practices include Agile methodologies, continuous integration, test-driven development, and pair programming.

    • Agile methodologies such as Scrum and Kanban for project management

    • Continuous integration to regularly merge code changes into a shared repository

    • Test-driven development to write tests before writing code

    • Pair programming for collaborative coding and knowledge sharing

  • Answered by AI
  • Q4. Hierarchy structure of backlog, agile value and principles
  • Ans. 

    The hierarchy structure of backlog in Agile is based on prioritization and refinement of user stories.

    • Backlog items are prioritized based on value to the customer

    • User stories are broken down into smaller tasks for implementation

    • Backlog is constantly refined and updated based on feedback and changing requirements

  • Answered by AI
  • Q5. Define product increment, calculate sprint velocity for team size 5
  • Ans. 

    Product increment is a potentially shippable version of the product at the end of the sprint.

    • Product increment is the sum of all the completed and done user stories in a sprint.

    • It should be in a usable condition and meet the team's definition of done.

    • Sprint velocity for a team size of 5 can be calculated by summing up the story points completed in the last few sprints and dividing by the number of sprints.

  • Answered by AI

Senior Scrum Master Interview Questions asked at other Companies

Q1. What is the difference between the Agile and Waterfall model?
View answer (1)

Deloitte interview questions for popular designations

 Consultant

 (458)

 Analyst

 (353)

 Senior Consultant

 (119)

 Assistant Manager

 (74)

 Associate Analyst

 (70)

 Tax Consultant

 (68)

 Business Analyst

 (63)

 Data Analyst

 (42)

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

I applied via Walk-in and was interviewed in Dec 2024. There were 10 interview rounds.

Round 1 - Aptitude Test 

Any ideas for an aptitude test?

Round 2 - Technical 

(2 Questions)

  • Q1. You have a good network connection.
  • Ans. 

    Yes as g good network connection

  • Answered Anonymously
  • Q2. Which individuals are currently employed?
  • Ans. 

    The current employees include software developers, project managers, quality assurance analysts, and technical support specialists.

    • Software developers

    • Project managers

    • Quality assurance analysts

    • Technical support specialists

  • Answered by AI
Round 3 - Case Study 

What is education in place?

Round 4 - Coding Test 

What is a SQL Server?

Round 5 - Group Discussion 

Effective communication and any suggestion.

Round 6 - HR 

(2 Questions)

  • Q1. What is your name?
  • Ans. 

    My name is John Doe.

    • Full name is John Doe

    • Common name in English-speaking countries

    • No middle name or initial

  • Answered by AI
  • Q2. What is your educational background?
  • Ans. 

    I have a Bachelor's degree in Computer Science from XYZ University.

    • Bachelor's degree in Computer Science

    • Graduated from XYZ University

    • Specialized in software development

    • Took courses in programming languages, algorithms, and software engineering

  • Answered by AI
Round 7 - HR 

(2 Questions)

  • Q1. What type of work does the Deloitte company engage in?
  • Ans. 

    Deloitte is a multinational professional services network that provides consulting, audit, tax, and advisory services.

    • Deloitte engages in consulting services for various industries

    • They provide audit and assurance services to ensure financial accuracy

    • The company offers tax services to help clients navigate complex tax regulations

    • Deloitte also provides advisory services to help businesses improve performance and manage r

  • Answered by AI
  • Q2. What type of work does Deloitte engage in?
  • Ans. 

    Deloitte engages in consulting, audit, tax, and advisory services for clients in various industries.

    • Consulting services for businesses

    • Audit services for financial statements

    • Tax services for individuals and corporations

    • Advisory services for strategy and operations

    • Industry-specific services such as healthcare, technology, and financial services

  • Answered by AI
Round 8 - HR 

(2 Questions)

  • Q1. What is your father's name?
  • Ans. 

    My father's name is John Smith.

    • Father's name is John Smith

    • He goes by the name John

    • His full name is John Smith

  • Answered by AI
  • Q2. What is your father's name?
  • Ans. 

    My father's name is John Smith.

    • Father's first name is John.

    • Father's last name is Smith.

    • Full name is John Smith.

  • Answered by AI
Round 9 - Assignment 

Engage with any assignment provided.

Round 10 - Assignment 

Please provide any assignments you have.

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes I am interested in this job

Top Deloitte Software Developer Interview Questions and Answers

Q1. Find K'th Character of Decrypted String You are given an encrypted string where repeated substrings are represented by the substring followed by its count. Your task is to find the K'th character of the decrypted string. The decrypted strin... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Get interview-ready with Top Deloitte Interview Questions

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(6 Questions)

  • Q1. Explain Oops Concept, keywords in java, access specifiers
  • Ans. 

    OOPs concept in Java includes keywords and access specifiers for defining classes and objects.

    • OOPs concept focuses on objects and classes for code organization

    • Keywords like 'class', 'extends', 'implements' are used for defining classes and inheritance

    • Access specifiers like 'public', 'private', 'protected' control visibility of class members

  • Answered by AI
  • Q2. Diff between arraylist and linkedlist
  • Ans. 

    ArrayList is implemented using a dynamic array while LinkedList is implemented using a doubly linked list.

    • ArrayList provides fast random access and slower insertion/deletion, while LinkedList provides fast insertion/deletion and slower random access.

    • ArrayList uses more memory as it needs to allocate a fixed-size array, while LinkedList uses more memory for storing references to the next and previous elements.

    • Example: A...

  • Answered by AI
  • Q3. Diff between set and list
  • Ans. 

    Set is a collection of unique elements with no specific order, while list is a collection of elements with a specific order and allows duplicates.

    • Set does not allow duplicate elements, while list allows duplicates.

    • Set does not maintain insertion order, while list maintains insertion order.

    • Examples: HashSet is a set implementation, ArrayList is a list implementation.

  • Answered by AI
  • Q4. Coding reverse a palindrome
  • Ans. 

    Reverse a palindrome string using Java

    • Create a function to check if a string is a palindrome

    • If the string is a palindrome, reverse it using a StringBuilder

    • Return the reversed string

  • Answered by AI
  • Q5. How to create rest API
  • Ans. 

    To create a REST API, you need to define endpoints, implement CRUD operations, handle HTTP methods, and use frameworks like Spring Boot.

    • Define endpoints for different resources (e.g. /users, /products)

    • Implement CRUD operations (Create, Read, Update, Delete) for each endpoint

    • Handle HTTP methods like GET, POST, PUT, DELETE

    • Use frameworks like Spring Boot to simplify API development

  • Answered by AI
  • Q6. Java 8 features, write lambda function to add two numbers
  • Ans. 

    Lambda functions in Java 8 allow for concise and functional programming style.

    • Use the lambda operator '->' to define the lambda function.

    • Specify the parameters and the body of the lambda function.

    • Example: (int a, int b) -> a + b

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Why you want to change?
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic environment.

    • Looking for opportunities to expand my skill set and knowledge in Java development.

    • Interested in working on innovative projects that push boundaries and require creative problem-solving.

    • Seeking a more collaborative and supportive team environment.

    • Want to explore new technologies and methodologies in software development.

  • Answered by AI
  • Q2. Coding question related to java 8

Top Deloitte Java Developer Interview Questions and Answers

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
View answer (3)

Java Developer 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
View answer (3)

Jobs at Deloitte

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

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. How do you assess if a user story is complete or not. Have you heard about INVEST.
  • Ans. 

    Assessing completeness of user stories using INVEST criteria.

    • INVEST stands for Independent, Negotiable, Valuable, Estimable, Small, and Testable.

    • A user story is complete if it meets all the criteria of INVEST.

    • Independence: User story should be self-contained and not dependent on other stories.

    • Negotiable: Details of the story can be negotiated between the team and stakeholders.

    • Valuable: Story should deliver value to the...

  • Answered by AI
  • Q2. Are you aware of RACI matrix.
  • Ans. 

    Yes, RACI matrix is a tool used to clarify roles and responsibilities in a project or process.

    • RACI stands for Responsible, Accountable, Consulted, and Informed.

    • It helps in defining who is responsible for what tasks, who is accountable for the overall success, who needs to be consulted before decisions are made, and who needs to be kept informed.

    • For example, in a software development project, the Business Analyst might ...

  • Answered by AI
  • Q3. If there are multiple stakeholders and one of the stakeholder is old school and against the new requirement, how do you handle such stakeholder.
  • Ans. 

    Address the concerns of the old school stakeholder by understanding their perspective, communicating effectively, and finding common ground.

    • Listen to the stakeholder's concerns and try to understand their perspective.

    • Communicate the benefits of the new requirement in a way that resonates with the stakeholder's values and priorities.

    • Find common ground by highlighting areas where the new requirement aligns with the stake...

  • Answered by AI
Round 2 - One-on-one 

(3 Questions)

  • Q1. What is the difference between requirement gathering and requirement elicitation.
  • Ans. 

    Requirement gathering is the process of collecting and documenting requirements from stakeholders, while requirement elicitation is the process of discovering and extracting requirements from stakeholders.

    • Requirement gathering involves documenting known requirements, while requirement elicitation involves uncovering hidden or unspoken requirements.

    • Requirement gathering typically involves interviews, surveys, and docume...

  • Answered by AI
  • Q2. What are the 3Cs of a user story.
  • Ans. 

    The 3Cs of a user story are Card, Conversation, and Confirmation.

    • Card: A user story is typically written on a physical or digital card to capture the essence of the requirement.

    • Conversation: The user story should spark a conversation between the stakeholders to gather more details and clarify any doubts.

    • Confirmation: The user story should have acceptance criteria that define when the story is considered complete.

  • Answered by AI
  • Q3. Traceability matrix

Interview Preparation Tips

Topics to prepare for Deloitte Lead Business Analyst interview:
  • Stakeholder Management
  • Requirement Gathering
  • user story

Top Deloitte Lead Business Analyst Interview Questions and Answers

Q1. If a task approaches a deadline and scrum team tells you that we cannot deliver a particular part of the sprint backlog. As business analyst how will you plan and take care of this situation
View answer (1)

Lead Business Analyst Interview Questions asked at other Companies

Q1. What is Counterparty Credit Risk? What is CVA and how is it calculated?
View answer (1)

Senior Test Analyst Interview Questions & Answers

user image amruta gaikwad

posted on 24 Feb 2025

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. What is SDLC ??
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is a process used by software development teams to design, develop, and test high-quality software.

    • SDLC is a structured process that consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

    • Each phase in the SDLC has its own set of activities and deliverables that contribute to the overall development of the software.

    • S...

  • Answered by AI
  • Q2. What is severity and priority explain withe examples
  • Ans. 

    Severity and priority are important concepts in software testing to determine the impact and urgency of a defect.

    • Severity refers to the impact of a defect on the system or application. It is usually categorized as low, medium, or high.

    • Priority, on the other hand, determines the urgency of fixing a defect. It is often classified as low, medium, or high.

    • Example: A defect that causes the application to crash every time a ...

  • Answered by AI
  • Q3. What is test plan
  • Ans. 

    A test plan is a document outlining the approach, resources, schedule, and scope of testing activities.

    • Test plan defines the testing activities to be performed, such as test objectives, test strategies, and test deliverables.

    • It includes details on the test environment, test tools, and test schedule.

    • Test plan also outlines the roles and responsibilities of team members involved in testing.

    • It serves as a guide for the te...

  • Answered by AI
  • Q4. Explain dashboard in salesforce
  • Ans. 

    A dashboard in Salesforce is a visual representation of key metrics and data from reports, allowing users to track performance and make informed decisions.

    • Dashboards in Salesforce display charts, graphs, tables, and metrics based on underlying reports.

    • Users can customize dashboards to show specific data relevant to their role or objectives.

    • Dashboards can be shared with other users or groups within the Salesforce platfo...

  • Answered by AI
  • Q5. What is profiles and role in salesforce
  • Ans. 

    Profiles in Salesforce define what a user can do in the system.

    • Profiles control access to objects, fields, and records

    • They determine which tabs and apps are visible to users

    • Profiles also specify permissions like create, read, edit, delete

    • Example: A Sales profile may have access to Leads and Opportunities but not to Accounts

  • Answered by AI

Senior Test Analyst Interview Questions asked at other Companies

Q1. What is Test Prioritization and How we apply to our Test Case?
View answer (1)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sql constrainsts, star schema, dml dcl commands
  • Q2. About cureent project and responsibilities
Round 2 - Technical 

(2 Questions)

  • Q1. Current projects and resposibilities
  • Q2. Where vs having, reason for job change

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Technical - about you current project and responsibilities, basic SQL question-constraints, starschema, DML DCL command, one sql query write.
2. Technical with senior manager- about project ,where vs having , reason of job change

Top Deloitte Data Engineer Interview Questions and Answers

Q1. What is difference between Cloud Run and Cloud Functions
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Self introduction
  • Q2. Project related
  • Q3. Related to application configuration
Round 2 - Technical 

(4 Questions)

  • Q1. Same self intro
  • Q2. Different documents maintained in a project
  • Ans. 

    Various documents like project plan, requirements, design documents, test cases, user manuals, etc.

    • Project plan outlining goals and timelines

    • Requirements document detailing project needs

    • Design documents for technical specifications

    • Test cases for quality assurance

    • User manuals for end users

  • Answered by AI
  • Q3. One coding question
  • Q4. How do you manage your fellow team members
  • Ans. 

    I manage my team members by fostering open communication, setting clear expectations, providing support, and recognizing their contributions.

    • Foster open communication by encouraging team members to share their ideas and concerns

    • Set clear expectations by outlining goals, deadlines, and responsibilities

    • Provide support by offering guidance, resources, and assistance when needed

    • Recognize contributions by acknowledging and ...

  • Answered by AI
Round 3 - Behavioral 

(3 Questions)

  • Q1. Self introduction
  • Q2. Hobbies and sone personality questions
  • Q3. Why do you wnat to switch
  • Ans. 

    I am seeking new challenges and opportunities for growth in my career.

    • Looking for new challenges to continue learning and developing skills

    • Seeking opportunities for career advancement and growth

    • Interested in exploring different industries or sectors

    • Want to work with a new team and expand professional network

  • Answered by AI

Top Deloitte Associate Solution Advisor Interview Questions and Answers

Q1. Which Industry has less volatile figures and why?
View answer (1)

Associate Solution Advisor Interview Questions asked at other Companies

Q1. Practical example Control matrix example from previous assignments.
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

JOBS

Deloitte

No Jobs

DESIGNATION

DESIGNATION

COMPANY BENEFITS

SHYAM METALICS AND ENERGY

No Benefits

DESIGNATION

INTERVIEWS

MS Technology

No Interviews

SALARIES

ISMT

JOBS

Browse jobs

Discover jobs you love

DESIGNATION

DESIGNATION

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.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 789 Interviews
BCG Interview Questions
3.7
 • 196 Interviews
Bain & Company Interview Questions
3.8
 • 103 Interviews
View all

Deloitte Reviews and Ratings

based on 17.9k reviews

3.8/5

Rating in categories

3.8

Skill development

3.3

Work-life balance

3.8

Salary

3.8

Job security

3.7

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 17.9k Reviews and Ratings
UFT Testing

Hyderabad / Secunderabad,

Pune

+1

5-8 Yrs

Not Disclosed

Webmethods Developer

Hyderabad / Secunderabad,

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Explore more jobs
Consultant
33.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
21.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
14.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
10.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
7.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.8
Compare

PwC

3.4
Compare

Ernst & Young

3.4
Compare

Cognizant

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview