Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ernst & Young Team. If you also belong to the team, you can get access from here

Ernst & Young Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ernst & Young Technology Consultant Interview Questions and Answers

Updated 14 May 2025

26 Interview questions

A Technology Consultant was asked
Q. Library for graphs in R
Ans. 

ggplot2 is a popular library for creating graphs in R.

  • ggplot2 is a powerful and flexible library for creating a wide range of graphs in R.

  • It allows for customization of almost every aspect of the graph.

  • Other popular graphing libraries in R include lattice and plotly.

A Technology Consultant was asked
Q. 

Group Anagrams Together

Given an array/list of strings STR_LIST, group the anagrams together and return each group as a list of strings. Each group must contain strings that are anagrams of each other.

Ex...

Ans. 

Group anagrams in a list of strings together and return each group as a list of strings.

  • Iterate through the list of strings and sort each string alphabetically to identify anagrams.

  • Use a hashmap to group anagrams together based on their sorted versions.

  • Return the values of the hashmap as the grouped anagrams.

Technology Consultant Interview Questions Asked at Other Companies

Q1. Why do we need IPv6 if we already have IPv4?
Q2. Smallest Subarray With K Distinct Elements Given an array A consi ... read more
Q3. Group Anagrams Together Given an array/list of strings STR_LIST, ... read more
Q4. HashMap Implementation Problem Statement Your task is to design a ... read more
Q5. Print Permutations - String Problem Statement Given an input stri ... read more
A Technology Consultant was asked
Q. 

HashMap Implementation Problem Statement

Your task is to design a data structure that efficiently stores a mapping of keys to values and performs operations in constant time.

Explanation:

1. INSERT(key, ...
Ans. 

Design a HashMap data structure with operations like INSERT, DELETE, SEARCH, GET, GET_SIZE, and IS_EMPTY.

  • Implement a hash table with efficient key-value mapping.

  • Ensure constant time complexity for operations.

  • Handle cases where key is not found or data structure is empty.

  • Example: INSERT('key1', 10), SEARCH('key1'), GET('key1'), DELETE('key1'), GET_SIZE(), IS_EMPTY()

🔥 Asked by recruiter 2 times
A Technology Consultant was asked
Q. What is dependency injection?
Ans. 

Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

  • Dependency injection helps in achieving loose coupling between classes.

  • It allows for easier testing by providing mock dependencies.

  • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

What people are saying about Ernst & Young

View All
trendylion
Verified Icon
2w
student at
Chandigarh University
Data Science dream job: Need resume advice & referrals!
Hey pros, what should I add to my resume to boost my chances of landing my first Data Science role? Guidance needed! Also, if you're hiring or know openings at: TCS | Infosys | Wipro | Cognizant | Genpact | Accenture | LTIMindtree | Fractal Analytics | Mu Sigma | Quantiphi | Tiger Analytics | EXL | ZS Associates | Deloitte | KPMG | EY | Capgemini | Publicis Sapient, a referral would be amazing! 📎 I’m attaching my resume. Feedback, suggestions, or leads would mean a lot! Thanks for your support! Let’s connect & grow in #DataScience. #DataScience #MachineLearning #DeepLearning #OpenToWork #FresherJobs #DataScienceJobs #Referral #CareerAdvice #ResumeTips #JobSearch #Hiring #AmbitionBox #LinkedInJobs
FeedCard Image
Got a question about Ernst & Young?
Ask anonymously on communities.
🔥 Asked by recruiter 3 times
A Technology Consultant was asked
Q. Can you explain the @RestController annotation in Spring Boot?
Ans. 

The @RestController annotation in Spring Boot is used to define a class as a RESTful controller.

  • Used to create RESTful web services in Spring Boot

  • Combines @Controller and @ResponseBody annotations

  • Eliminates the need for @ResponseBody annotation on each method

  • Returns data directly in the response body as JSON or XML

A Technology Consultant was asked
Q. What are a few features of Spring Boot?
Ans. 

Spring Boot is a framework that simplifies the development of Java applications by providing pre-configured setups.

  • Auto-configuration: Spring Boot automatically configures the application based on dependencies added to the project.

  • Embedded server: Spring Boot comes with an embedded Tomcat, Jetty, or Undertow server for easy deployment.

  • Actuator: Provides production-ready features like monitoring, metrics, and healt...

A Technology Consultant was asked
Q. What are Java 8 streams?
Ans. 

Java 8 streams are a sequence of elements that support functional-style operations.

  • Streams allow for processing sequences of elements in a functional way.

  • They can be created from various data sources like collections, arrays, or I/O channels.

  • Operations like filter, map, reduce, and collect can be performed on streams.

  • Streams are lazy, meaning intermediate operations are only executed when a terminal operation is c...

Are these interview questions helpful?
A Technology Consultant was asked
Q. Write a Java 8 program to iterate through a Stream using the forEach method.
Ans. 

Java 8 program to iterate through a Stream using forEach method

  • Create a Stream of elements using Stream.of() or any other method

  • Use the forEach() method to iterate through the Stream and perform an action on each element

  • Example: Stream.of(1, 2, 3, 4, 5).forEach(System.out::println);

A Technology Consultant was asked
Q. How does Spring Boot work?
Ans. 

Spring Boot is a framework that simplifies the development of Java applications by providing pre-configured settings and tools.

  • Spring Boot eliminates the need for manual configuration by providing defaults for most settings.

  • It includes embedded servers like Tomcat, Jetty, or Undertow, making it easy to run applications as standalone JAR files.

  • Spring Boot also offers production-ready features like metrics, health c...

A Technology Consultant was asked
Q. How does MVC work in Spring?
Ans. 

MVC in Spring is a design pattern that separates an application into three main components: Model, View, and Controller.

  • Model represents the data and business logic of the application.

  • View is responsible for rendering the user interface based on the data from the Model.

  • Controller acts as an intermediary between Model and View, handling user input and updating the Model accordingly.

  • Spring MVC provides annotations l...

Ernst & Young Technology Consultant Interview Experiences

24 interviews found

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Past Experience and work I performed in the Data Analytic team
  • Ans. 

    I have 3 years of experience working in the Data Analytic team where I analyzed large datasets to provide insights and recommendations.

    • Performed data cleaning and preprocessing tasks to ensure data accuracy

    • Utilized statistical analysis and machine learning techniques to extract valuable information

    • Created data visualizations and reports to communicate findings to stakeholders

  • Answered by AI
  • Q2. Power BI- DAX functions, Refresh Rates, Cardinality, Uses of several graphs, KPIs, Reporting
  • Q3. SQL- Uses of several functions, intermediate logics asked, Eg- Finding 2nd highest salary, function of RankX, Window functions
  • Q4. Data Cleansing and ways to analyse data
  • Ans. 

    Data cleansing involves identifying and correcting errors in data to improve its quality. Ways to analyze data include using statistical methods, data visualization, and machine learning algorithms.

    • Identify and remove duplicate records

    • Standardize data formats and values

    • Fill in missing values using imputation techniques

    • Use data profiling to understand data quality issues

    • Apply data validation rules to ensure accuracy

    • Util...

  • Answered by AI
Round 2 - Power BI Report Assesment test 

(1 Question)

  • Q1. Raw data was provided and a proper PBI report was asked to be designed.
Round 3 - HR 

(2 Questions)

  • Q1. Expected Salary and why you find yourself fitting for the role?
  • Q2. Working in a Big4 can be overwhelming at times, how would you deal with it as you have already worked for one.
  • Ans. 

    I would deal with the overwhelming nature of working in a Big4 by prioritizing tasks, seeking support from colleagues, and practicing self-care.

    • Prioritize tasks based on deadlines and importance to avoid feeling overwhelmed

    • Seek support from colleagues or mentors to discuss challenges and brainstorm solutions

    • Practice self-care activities such as exercise, meditation, or hobbies to manage stress and maintain work-life ba...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

Basic aptitude and coding

Round 2 - Technical 

(1 Question)

  • Q1. What is denormalization and explanation of projects
  • Ans. 

    Denormalization is the process of adding redundant data to a database to improve read performance.

    • Denormalization involves duplicating data from normalized tables into a single denormalized table.

    • It can improve query performance by reducing the need for joins and aggregations.

    • Denormalization is often used in data warehousing and reporting applications.

    • Examples of denormalization include creating summary tables or addin...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Introduction, why ey
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mcqs based on oops, coding
Round 2 - Technical 

(1 Question)

  • Q1. Normal technicall question on c++
Round 3 - HR 

(1 Question)

  • Q1. Tell about yourself, why would you like to join e&y
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude Test was fairly moderate. There were questions which are quite easy and there were 4/5 question which were tricky and those decided the cutoff.

Round 2 - Coding Test 

Two questions were asked. One was string manipulation and another was dynamic programming. Nothing too crazy, the questions were solvable.

Round 3 - Group Discussion 

In my Group Discussion Round, our group asked to introduce ourselves. The selection happened based on how well you can introduce yourself. They were looking for professional background, personal and social background.

Round 4 - Technical 

(1 Question)

  • Q1. I was asked questions based on my projects that i have done and was asked to explain those. and there were questions on case study. My interviewer was very friendly, hew keenly listening to what i was sayi...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident.
Be prepared and concise with your cv.
Be open minded to approach a problem. At least make an attempt to solve the question.
Be thorough with DSA.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. In depth Java questions
Round 2 - Technical 

(1 Question)

  • Q1. In depth Java coding questions and theory
Round 3 - HR 

(1 Question)

  • Q1. Salary expectations
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. What do you understand about tech consultants?
  • Q2. What is data privacy
  • Ans. 

    Data privacy refers to the protection of personal information from unauthorized access or disclosure.

    • Data privacy involves controlling who has access to personal information

    • It includes ensuring that data is securely stored and transmitted

    • Examples include encryption, access controls, and data anonymization

  • Answered by AI
  • Q3. What is cloud computing
  • Ans. 

    Cloud computing is the delivery of computing services over the internet, including storage, databases, networking, software, and more.

    • Allows users to access and store data and applications on remote servers instead of on their local devices

    • Provides scalability, flexibility, and cost-effectiveness for businesses

    • Examples include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Platform

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay current
Understand Business needs
Communication skills

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Prototypal inheritance, promises, hoisting
Round 2 - HR 

(1 Question)

  • Q1. Salary expectations, strengths, weakness

Interview Preparation Tips

Topics to prepare for Ernst & Young Technology Consultant interview:
  • Mean Stack
Interview preparation tips for other job seekers - learn basics
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Snowflake aptitude test for professional experience

Round 2 - Technical 

(1 Question)

  • Q1. Snowflake architecture

Technology Consultant Interview Questions & Answers

user image Abhishek Srivastava

posted on 14 May 2025

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

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

  • Q1. Why you join EY ?
  • Ans. 

    I want to join EY for its innovative culture, commitment to professional growth, and the opportunity to work on impactful projects globally.

    • EY's reputation for innovation aligns with my passion for leveraging technology to solve complex business challenges.

    • The firm's commitment to continuous learning and development, such as the EYU platform, excites me as I seek to enhance my skills.

    • Working on diverse projects across ...

  • Answered by AI
  • Q2. What is the expextion from our side
  • Ans. 

    Expectations from your side include collaboration, clear communication, and a focus on innovative solutions to meet client needs.

    • Collaboration: Work closely with your team to understand project goals and deliverables.

    • Clear Communication: Maintain open lines of communication to ensure alignment on expectations and progress.

    • Innovative Solutions: Provide creative and effective technology solutions tailored to client requi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good for new jon=b seekers
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Output based questions
  • Q2. Basics of Node js
  • Q3. One programming question
Round 2 - Technical 

(2 Questions)

  • Q1. Questions based in MongoDb like indexing, aggregate and pipeline
  • Q2. How do you detect and handle memory leak in node js
  • Ans. 

    Detecting and handling memory leaks in Node.js involves using tools like heap snapshots and monitoring memory usage.

    • Use tools like heap snapshots to identify memory leaks

    • Monitor memory usage over time to detect abnormal increases

    • Implement proper garbage collection strategies to free up memory

    • Avoid creating unnecessary closures or retaining references to objects

  • Answered by AI

Skills evaluated in this interview

Ernst & Young Interview FAQs

How many rounds are there in Ernst & Young Technology Consultant interview?
Ernst & Young interview process usually has 2-3 rounds. The most common rounds in the Ernst & Young interview process are Technical, Aptitude Test and HR.
How to prepare for Ernst & Young Technology 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 Ernst & Young. The most common topics and skills that interviewers at Ernst & Young expect are Consulting, CCTV Monitoring, Analytical Chemistry, Automation Testing and Clinical SAS Programming.
What are the top questions asked in Ernst & Young Technology Consultant interview?

Some of the top questions asked at the Ernst & Young Technology Consultant interview -

  1. How do you detect and handle memory leak in node...read more
  2. Java 8, Create Employee pojo and sort them based on salary. Salary,I'd,name the...read more
  3. What is denormalization and explanation of proje...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 16 interview experiences

Difficulty level

Moderate 80%
Hard 20%

Duration

Less than 2 weeks 50%
2-4 weeks 40%
4-6 weeks 10%
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 3k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
KPMG India Interview Questions
3.5
 • 843 Interviews
ZS Interview Questions
3.3
 • 473 Interviews
BCG Interview Questions
3.7
 • 203 Interviews
Bain & Company Interview Questions
3.9
 • 111 Interviews
WSP Interview Questions
4.2
 • 99 Interviews
Mercer Interview Questions
3.7
 • 89 Interviews
View all
Ernst & Young Technology Consultant Salary
based on 692 salaries
₹5.4 L/yr - ₹21 L/yr
13% less than the average Technology Consultant Salary in India
View more details

Ernst & Young Technology Consultant Reviews and Ratings

based on 65 reviews

3.4/5

Rating in categories

3.5

Skill development

2.9

Work-life balance

3.3

Salary

3.1

Job security

3.0

Company culture

3.2

Promotions

3.0

Work satisfaction

Explore 65 Reviews and Ratings
Senior Consultant
19.4k salaries
unlock blur

₹9.1 L/yr - ₹30 L/yr

Consultant
13.2k salaries
unlock blur

₹6.4 L/yr - ₹21 L/yr

Manager
8k salaries
unlock blur

₹16.8 L/yr - ₹51 L/yr

Assistant Manager
6.8k salaries
unlock blur

₹9.9 L/yr - ₹28.5 L/yr

Associate Consultant
4.3k salaries
unlock blur

₹4.8 L/yr - ₹15 L/yr

Explore more salaries
Compare Ernst & Young with

Deloitte

3.7
Compare

PwC

3.4
Compare

EY Global Delivery Services ( EY GDS)

3.5
Compare

Accenture

3.8
Compare
write
Share an Interview