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

Clear (1)

Ernst & Young Technology Consultant Interview Questions, Process, and Tips

Updated 15 Nov 2024

Top Ernst & Young Technology Consultant Interview Questions and Answers

  • Q1. Smallest Subarray With K Distinct Elements Given an array A consisting of N integers, your task is to find the smallest subarray of A that contains exactly K distinct in ...read more
  • Q2. 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 ...read more
  • Q3. 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 ...read more
View all 24 questions

Ernst & Young Technology Consultant Interview Experiences

23 interviews found

I applied via Job Fair and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Coding Test 

Provided a scenario and asked to perform crud operations on the same.

Round 3 - One-on-one 

(2 Questions)

  • Q1. 1. As I have only 1 year experience at that time so asked basic questions of java and spring boot like some annotations as Autowired and about actuator and all
  • Q2. Prepare for mysql queries
Round 4 - Aptitude Test 

Technical discussion with client of the company again basic java and mysql queries questions

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are a fresher or having less than 2 year experience then only basic questions are asked and also prepare crud api in any language.
But if you want to join a organizations in which you can learn and expecting support then Big 4 is not a right place search for a IT focused company.
Otherwise for salary and perks big 4 are good
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2022. There were 2 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Related to project and tech stack
  • Q2. Related to techstack

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. Difference single variant and multivariant parameters?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. All Technical Questions
Round 2 - Technical 

(1 Question)

  • Q1. About previous project, technical questions

Interview Preparation Tips

Topics to prepare for Ernst & Young Technology Consultant interview:
  • Technical Skills
  • previous project

I was interviewed in Oct 2021.

Round 1 - Video Call 

(6 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

In this round, I was first asked a coding question related to Sliding Window Technique and then I was grilled on some major concepts from Java and Java Collections.

  • Q1. 

    Smallest Subarray With K Distinct Elements

    Given an array A consisting of N integers, your task is to find the smallest subarray of A that contains exactly K distinct integers.

    If multiple such subarrays...

  • Ans. 

    Find the smallest subarray in an array with exactly K distinct elements.

    • Use a sliding window approach to keep track of the subarray with K distinct elements.

    • Use a hashmap to store the frequency of each element in the window.

    • Update the window by expanding or shrinking based on the number of distinct elements.

    • Return the smallest subarray with K distinct elements and the smallest leftmost index.

  • Answered by AI
  • Q2. Why are Java Strings immutable in nature?
  • Ans. 

    Java Strings are immutable to ensure thread safety, security, and optimization.

    • Immutable strings prevent accidental changes, ensuring data integrity.

    • String pooling allows for memory optimization by reusing common strings.

    • Thread safety is guaranteed as strings cannot be modified concurrently.

    • Security is enhanced as sensitive information cannot be altered once set.

  • Answered by AI
  • Q3. What do you know about the JIT compiler?
  • Ans. 

    JIT compiler stands for Just-In-Time compiler, which compiles code during runtime for improved performance.

    • JIT compiler translates bytecode into machine code at runtime

    • It helps in optimizing performance by compiling frequently executed code

    • Examples include Java HotSpot JIT compiler and .NET JIT compiler

  • Answered by AI
  • Q4. What is the difference between HashSet and HashMap in Java?
  • Ans. 

    HashSet is a collection of unique elements, while HashMap is a key-value pair mapping.

    • HashSet does not allow duplicate elements, HashMap allows duplicate keys but not values.

    • HashSet uses a hash table to store elements, HashMap uses key-value pairs.

    • Example: HashSet<String> set = new HashSet<>(); HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q5. Can you differentiate between ArrayList and Vector in Java?
  • Ans. 

    ArrayList is non-synchronized and Vector is synchronized in Java.

    • ArrayList is not synchronized, while Vector is synchronized.

    • ArrayList is faster than Vector.

    • Vector is thread-safe, while ArrayList is not.

    • Example: ArrayList<String> list = new ArrayList<>(); Vector<String> vector = new Vector<>();

  • Answered by AI
  • Q6. Can you differentiate between HashMap and Hashtable?
  • Ans. 

    HashMap and Hashtable are both data structures in Java used to store key-value pairs, but Hashtable is synchronized while HashMap is not.

    • HashMap allows null values and one null key, while Hashtable does not allow null keys or values.

    • HashMap is not synchronized and is not thread-safe, while Hashtable is synchronized and thread-safe.

    • HashMap is faster than Hashtable for most operations, as it is not synchronized.

    • HashMap i...

  • Answered by AI
Round 2 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with some basic questions from Java 8 and then the interviewer started asking some questions from Spring Boot. At the end of the interview, I was also asked some questions from SQL and DBMS.

  • Q1. 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 called...

  • Answered by AI
  • Q2. 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);

  • Answered by AI
  • Q3. 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 checks...

  • Answered by AI
  • Q4. 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.

  • Answered by AI
  • Q5. 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

  • Answered by AI
  • Q6. 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 like @...

  • Answered by AI
  • Q7. 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 health che

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic Java related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAErnst & Young (EY) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS , Java , SpringTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Ernst & Young interview questions for designations

 Senior Technology Consultant

 (9)

 Technology Analyst

 (1)

 Associate Technology

 (1)

 Senior Consultant

 (111)

 Associate Consultant

 (44)

 Technical Consultant

 (3)

 Principal Consultant

 (2)

 Devops Consultant

 (1)

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

I applied via Referral and was interviewed before Aug 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Aptitude Test 

Basic aptitude questions

Round 3 - Coding Test 

2 coding was there. One medium one hard.

Round 4 - Technical 

(2 Questions)

  • Q1. Technical interview will be there. They'll ask from your resume also some situation based question.
  • Q2. 1. Tell me about yourself 2. Write SQL query 3. Write a programming 4. Relocation or not 5. More programming and SQL related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare according to your resume.
Know about the company's ceo and policy.
Strictly tell them if you are willing to relocate or not.

Get interview-ready with Top Ernst & Young Interview Questions

I applied via Recruitment Consulltant and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. In Production Planning. 1. Tell me about Product cycle. 2. What are various implementation steps. 3. Previous project scenarios? 4. Settings to convert Bulk solution in to packets,bottles etc in production...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well, recollect experience.

Technology Consultant Jobs at Ernst & Young

View all

Interview Questionnaire 

2 Questions

  • Q1. Java 8, Create Employee pojo and sort them based on salary. Salary,I'd,name there were the member variables
  • Q2. Spring boot annotations, sliding window problems. Qualifier annotation use, difference between HashTable, Concurrent hashmap. Difference between controller and rest controller, comparator, comparable.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice array problems to qualify the test.

I applied via Naukri.com and was interviewed in Aug 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Tell me about your work experience?
Round 2 - Behavioral 

(1 Question)

  • Q1. Introduction, notice period, why you are leaving your last company.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always ask your question at the end of the interview.

I applied via Naukri.com and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why you think we should hire you, what value addition you did in your current role apart from BAU.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm while answering questions. Do not rush, think and then speak. Always talk about the challenges you faced while in a new project / process and what you did to overcome them. Rest they are also human so need to get scared. Only caution: don’t bluff, say no if you don’t know the answer.

I applied via Campus Placement and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Explain Hadoop architecture
  • Ans. 

    Hadoop architecture is a distributed computing framework that allows for the processing of large data sets.

    • Hadoop consists of two main components: Hadoop Distributed File System (HDFS) and MapReduce.

    • HDFS is responsible for storing data across multiple nodes in a cluster.

    • MapReduce is responsible for processing the data stored in HDFS.

    • Hadoop also includes other components such as YARN, which manages resources in the clus...

  • Answered by AI
  • Q2. 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.

  • Answered by AI
  • Q3. Write and explain Lambda function in Python
  • Ans. 

    Lambda function is a small anonymous function in Python that can have any number of arguments, but can only have one expression.

    • Lambda functions are defined using the lambda keyword.

    • They are commonly used with built-in functions like filter(), map() and reduce().

    • Lambda functions can be used to create simple one-line functions.

    • They are often used as arguments to higher-order functions.

    • Lambda functions can be assigned to

  • Answered by AI
  • Q4. Explain AWS Lambda
  • Ans. 

    AWS Lambda is a serverless computing service that allows you to run code without provisioning or managing servers.

    • AWS Lambda is event-driven and can be triggered by various AWS services or external events

    • It supports multiple programming languages including Node.js, Python, Java, and C#

    • You only pay for the compute time that you consume, with no upfront costs or minimum fees

    • Lambda functions can be used for a variety of t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Get hold of basics. Clear explanation is suggested.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

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, IT Consulting, Analytical Chemistry and Automation Testing.
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. What is denormalization and explanation of proje...read more
  3. Write and explain Lambda function in Pyt...read more

Recently Viewed

INTERVIEWS

INDO-MIM

No Interviews

INTERVIEWS

INDO-MIM

No Interviews

INTERVIEWS

Code and Theory

No Interviews

INTERVIEWS

Persistent Systems

No Interviews

INTERVIEWS

Ernst & Young

No Interviews

LIST OF COMPANIES

Simplex Infrastructures

Locations

SALARIES

INDO-MIM

INTERVIEWS

Ernst & Young

No Interviews

INTERVIEWS

Ernst & Young

No Interviews

SALARIES

INDO-MIM

Tell us how to improve this page.

Ernst & Young Technology Consultant Interview Process

based on 15 interviews

3 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
KPMG India Interview Questions
3.5
 • 790 Interviews
ZS Interview Questions
3.4
 • 449 Interviews
BCG Interview Questions
3.7
 • 196 Interviews
View all
Ernst & Young Technology Consultant Salary
based on 614 salaries
₹6.5 L/yr - ₹21 L/yr
14% less than the average Technology Consultant Salary in India
View more details

Ernst & Young Technology Consultant Reviews and Ratings

based on 59 reviews

3.5/5

Rating in categories

3.5

Skill development

3.1

Work-life balance

3.4

Salary

3.2

Job security

3.1

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 59 Reviews and Ratings
Senior Consultant
16k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
12.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
7.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
6.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ernst & Young with

Deloitte

3.8
Compare

PwC

3.4
Compare

EY Global Delivery Services ( EY GDS)

3.6
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent