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 Java Developer Interview Questions, Process, and Tips

Updated 23 Aug 2024

Top Ernst & Young Java Developer Interview Questions and Answers

  • Q1. Why is Java considered platform independent, while the Java Virtual Machine (JVM) is platform dependent?
  • Q2. What is the difference between an abstract class and an interface in OOP?
  • Q3. Can you explain the difference between setMaxResults() and setFetchSize() in a Query?
View all 20 questions

Ernst & Young Java Developer Interview Experiences

6 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. They basically asked questions related to your project.
  • Q2. Then asked design patters and related questions to it.
  • Q3. Asked SOLID principal of software development.
  • Q4. Gave some coding questions related to Java array where I had to return the index of values whos total is 10.
  • Q5. How you would connect springboot project with data base.
  • Ans. 

    Use Spring Data JPA to connect Spring Boot project with database.

    • Add database configuration in application.properties or application.yml file

    • Create entity classes annotated with @Entity and @Table

    • Create repository interfaces extending JpaRepository

    • Use @Autowired annotation to inject repository in services or controllers

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. DSA Collection Spring boot Java 8

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Java Developer Interview Questions & Answers

user image Rahul Bhardwaj

posted on 31 May 2024

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

(1 Question)

  • Q1. 1- REST API 2- MICROSERVICES 3- Java 4- DB

I appeared for an interview before Apr 2021.

Round 1 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

This round started with some basic questions from Java followed by some questions from OOPS in Java and standard Java 8 questions.

  • Q1. What are the advantages of using Packages in Java?
  • Ans. 

    Packages in Java help organize code, prevent naming conflicts, and provide access control.

    • Organize code into logical groups for easier maintenance and readability

    • Prevent naming conflicts by using unique package names

    • Provide access control by using access modifiers like public, private, protected, and default

    • Facilitate reusability by allowing classes to be easily imported and used in other packages

  • Answered by AI
  • Q2. Why is Java considered platform independent, while the Java Virtual Machine (JVM) is platform dependent?
  • Ans. 

    Java is platform independent because it can run on any system with JVM, which is platform dependent due to its need to interact with the underlying hardware.

    • Java code is compiled into bytecode, which can be executed on any system with a JVM installed.

    • JVM acts as an intermediary between the Java code and the underlying hardware of the system.

    • JVM is platform dependent because it needs to interact with the specific hardwa...

  • Answered by AI
  • Q3. Explain the use of the final keyword in a variable, method, and class.
  • Ans. 

    The final keyword in Java is used to restrict the modification of variables, methods, and classes.

    • Final variable: Once assigned, the value of a final variable cannot be changed.

    • Final method: A final method cannot be overridden by subclasses.

    • Final class: A final class cannot be extended.

  • Answered by AI
  • Q4. What is meant by an interface in Object-Oriented Programming?
  • Ans. 

    An interface in OOP is a blueprint of a class that defines a set of methods without implementation.

    • Interfaces in Java are used to achieve abstraction and multiple inheritance.

    • All methods in an interface are abstract by default and do not have a body.

    • Classes can implement multiple interfaces but can only extend one class.

    • Example: interface Shape { void draw(); }

    • Example: class Circle implements Shape { public void draw()

  • Answered by AI
  • Q5. What is the difference between an abstract class and an interface in OOP?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface can only have constants and method signatures.

    • A class can extend only one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define common characteristics of subclasses, while interfaces are used to defin...

  • Answered by AI
  • Q6. What are some standard Java pre-defined functional interfaces?
  • Ans. 

    Some standard Java pre-defined functional interfaces include Function, Consumer, Predicate, and Supplier.

    • Function: Represents a function that accepts one argument and produces a result. Example: Function<Integer, String>

    • Consumer: Represents an operation that accepts a single input argument and returns no result. Example: Consumer<String>

    • Predicate: Represents a predicate (boolean-valued function) of one argu...

  • Answered by AI
  • Q7. What are the features of a lambda expression?
  • Ans. 

    Lambda expressions are a feature introduced in Java 8 to provide a concise way to represent anonymous functions.

    • Lambda expressions are used to provide implementation of a functional interface.

    • They enable you to treat functionality as a method argument, or code as data.

    • Syntax of lambda expressions is (argument) -> (body).

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

  • Answered by AI
Round 2 - Video Call 

(9 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had questions from Microservices , Spring Boot and Hibernate. The interviewer was quite freindly and also helped wherever I was stuck.

  • Q1. What are the basic annotations that Spring Boot offers?
  • Ans. 

    Spring Boot offers annotations like @SpringBootApplication, @RestController, @Autowired, @Component, @RequestMapping, etc.

    • @SpringBootApplication - Used to mark the main class of a Spring Boot application.

    • @RestController - Used to define a class as a controller in a RESTful web service.

    • @Autowired - Used for automatic dependency injection.

    • @Component - Used to indicate that a class is a Spring component.

    • @RequestMapping - ...

  • Answered by AI
  • Q2. 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 to annotate every method with @ResponseBody

  • Answered by AI
  • Q3. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern in which the dependencies of an object are provided externally rather than created within the object itself.

    • In dependency injection, the dependencies of a class are injected into the class from an external source, rather than the class creating the dependencies itself.

    • This helps in achieving loose coupling between classes, making the code more maintainable and testable.

    • There are...

  • Answered by AI
  • Q4. What does the @SpringBootApplication annotation do internally?
  • Ans. 

    The @SpringBootApplication annotation is used to mark a class as a Spring Boot application and enables auto-configuration and component scanning.

    • 1. Enables auto-configuration by scanning the classpath for specific types and configuring beans based on their presence.

    • 2. Enables component scanning to automatically discover and register Spring components such as @Component, @Service, @Repository, and @Controller.

    • 3. Combine...

  • Answered by AI
  • Q5. Can you explain the difference between setMaxResults() and setFetchSize() in a Query?
  • Ans. 

    setMaxResults() limits the number of results returned by a query, while setFetchSize() determines the number of rows fetched at a time from the database.

    • setMaxResults() is used to limit the number of results returned by a query.

    • setFetchSize() determines the number of rows fetched at a time from the database.

    • setMaxResults() is typically used for pagination purposes, while setFetchSize() can improve performance by reduci...

  • Answered by AI
  • Q6. What are the concurrency strategies available in Hibernate?
  • Ans. 

    Hibernate provides several concurrency strategies like optimistic locking, pessimistic locking, and versioning.

    • Optimistic locking: Allows multiple transactions to read and write to the database without locking the data. It checks for concurrent modifications before committing the transaction.

    • Pessimistic locking: Locks the data to prevent other transactions from accessing or modifying it until the lock is released.

    • Versi...

  • Answered by AI
  • Q7. Can you explain the N+1 SELECT problem in Hibernate?
  • Ans. 

    N+1 SELECT problem in Hibernate occurs when a query results in N+1 additional queries being executed.

    • Occurs when a query fetches a collection of entities and then for each entity, an additional query is executed to fetch related entities

    • Can be resolved by using fetch joins or batch fetching to fetch all related entities in a single query

    • Example: Fetching a list of orders and then for each order, fetching the customer i

  • Answered by AI
  • Q8. Can you explain the working of Microservice Architecture?
  • Ans. 

    Microservice Architecture is an architectural style that structures an application as a collection of loosely coupled services.

    • Each service is self-contained and can be developed, deployed, and scaled independently.

    • Services communicate with each other over a network, typically using HTTP/REST or messaging protocols.

    • Microservices allow for better scalability, flexibility, and resilience compared to monolithic architectu...

  • Answered by AI
  • Q9. What issues are generally addressed by Spring Cloud?
  • Ans. 

    Spring Cloud addresses issues related to distributed systems and microservices architecture.

    • Service discovery and registration

    • Load balancing

    • Circuit breakers

    • Distributed configuration management

    • Routing and gateway

    • Monitoring and tracing

  • 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 criteria1+ years of experienceErnst & Young (EY) interview preparation:Topics to prepare for the interview - Java , OOPS , Spring , MVC , Hibernate , AptitudeTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 2 : 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 Java Developer

 (1)

 Developer

 (1)

 Software Developer

 (8)

 Python Developer

 (2)

 Servicenow Developer

 (2)

 SQL Developer

 (1)

 Database Developer

 (1)

 Android Developer

 (1)

I applied via Naukri.com and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. -OOPS concepts.
  • Q2. Difference between checked and unchecked exceptions.
  • Ans. 

    Checked exceptions are checked at compile-time while unchecked exceptions are not.

    • Checked exceptions are checked at compile-time and must be handled or declared in the method signature.

    • Unchecked exceptions are not checked at compile-time and do not need to be handled or declared.

    • Checked exceptions are usually used for recoverable errors while unchecked exceptions are used for unrecoverable errors.

    • Examples of checked ex...

  • Answered by AI
  • Q3. Difference between String and String Builder
  • Ans. 

    String is immutable, StringBuilder is mutable.

    • String is a sequence of characters stored in the heap memory.

    • String Builder is a mutable sequence of characters stored in the heap memory.

    • String objects are immutable, meaning their values cannot be changed once created.

    • String Builder objects are mutable, meaning their values can be changed after creation.

    • String concatenation creates a new String object each time, which can...

  • Answered by AI
  • Q4. How can we create our own immutable class
  • Ans. 

    An immutable class in Java can be created by declaring the class as final, making all fields private and final, and not providing any setter methods.

    • Declare the class as final to prevent inheritance

    • Make all fields private and final to prevent modification

    • Do not provide any setter methods to prevent changing the state

    • Initialize all fields in the constructor

    • Avoid returning mutable objects or references to internal mutabl

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with the concepts as some questions were commonly asked and easy to be answered while some were not so common. Questions weren't that though although, but was not easy to recall the concepts during the interview.

Skills evaluated in this interview

Get interview-ready with Top Ernst & Young Interview Questions

I applied via Recruitment Consultant and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. The basic question of core java.Algorithms with java 8.Spring and spring-boot.Normal question of DB. Find 3rd largest salary?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well versed with core java, Practice algorithims.Java 8 is essential. Be comfortable with spring-boot annotations.

Java Developer Jobs at Ernst & Young

View all

Interview questions from similar companies

Associate Interview Questions & Answers

BCG user image Anonymous

posted on 14 Jan 2015

Interview Preparation Tips

Round: resume shortlisitng
Tips: Resume format:  30 seconds, 1-2 page, formatting, alignment,clear, crisp, precise, use power words, state highest achievement,bullet points not exceeding a line,2-3 bullets under each main heading,get reviewed by seniors.For an Outstanding resume: Well written, aesthetic and impressive,2-3 peaks,weave story about achievements, leadership skills,dynamic, all rounder,ability to work under pressure,multi-task, handle challenges, perseverance and determination.

Round: Case Study Interview
Tips: Break down complex problem, structure the problem, approach more important than conclusion, multiple solutions possible, think out of the box, do not force fit frameworks, don’t over prepare!

Skill Tips: ""
Skills: Confidence, Interpersonal skills, Connect with the interviewer, Ability to think on your feet, Stress management, Problem-solving skill, Analytical ability, Logical thinking, Strategy making skill
College Name: IIT Madras

Associate Interview Questions & Answers

BCG user image Anonymous

posted on 24 Jan 2015

Interview Questionnaire 

4 Questions

  • Q1. CASE 1: What do you think will be the demand for broadband connections in 5 years?
  • Ans. 

    The demand for broadband connections is expected to increase significantly in the next 5 years.

    • The rise of remote work and online education will drive the demand for broadband connections.

    • The increasing popularity of streaming services and online gaming will also contribute to the demand.

    • The development of new technologies such as 5G and IoT will require faster and more reliable internet connections.

    • The COVID-19 pandem...

  • Answered by AI
  • Q2. CASE 2: An aluminium manufacturer wants to enter the multiplex business. What advice would you give him?
  • Ans. 

    Advise an aluminium manufacturer on entering the multiplex business.

    • Conduct market research to identify potential locations and target audience.

    • Develop a solid business plan with a clear understanding of the costs and revenue streams.

    • Invest in high-quality equipment and amenities to provide a superior movie-going experience.

    • Establish partnerships with distributors and studios to secure a diverse range of films.

    • Consider...

  • Answered by AI
  • Q3. CASE: Cement manufacturer A wants to acquire cement manufacturer B. Does it makes sense?
  • Ans. 

    It depends on various factors such as market conditions, financial stability, and strategic goals.

    • Consider the market share of both companies

    • Analyze the financial stability of both companies

    • Evaluate the strategic goals of both companies

    • Assess the potential benefits and risks of the acquisition

    • Look at the regulatory environment

    • Consider the cultural fit between the two companies

  • Answered by AI
  • Q4. Tell me about your biggest failure
  • Ans. 

    My biggest failure was not meeting a project deadline due to poor time management.

    • Poor time management led to missed deadlines

    • Lack of communication with team members

    • Learned to prioritize tasks and communicate better

  • Answered by AI

Interview Preparation Tips

Round: Case Study Interview
Experience: CASE 1:
No numbers were expected, neither knowledge of broadband technology. The key here was increase in the number of uses along with the users. None of the established frameworks really helped. The interviewer was very helpful and gave me cues when I was not making progress.

CASE 2:
Again no numbers no data was expected. On asked about the missed out aspects, the interviewer discussed the key aspects with me and also told me where I had gone wrong.
Tips: 1.When they ask questions about academic projects try to pick something with practical applications.

Round: Case Study Interview
Experience: 1. The interviewer told me exactly what he wanted.
2. It was a two way discussion and a very comfortable conversation3.He told me the four departments he wanted me to look at.
4. I was to check for 'synergies' or potential benefits of the acquisition of these departments.
Tips: 1.Sleep well.
2.Wear comfortable footwear.
3.Don't starve yourself.
4.Sit down a minute between interviews and take deep breaths.

General Tips: 1.Attend PPTs of all companies you are interested in.
2.Don't try and squeeze too much in your resume.
3.Case studies are must for consultancies so be careful in that.
4.Don't prepare answers to the last word&#44; but think about some common questions.
Skills: No as such particular skills tested.
College Name: IIT BOMBAY

Interview Preparation Tips

Round: CV Submission
Experience: This is an elimination phase, so it's important that your CV puts you in a good light. BCG would most likely conduct a CV building workshop. If they don't, McKinsey would. 
Tips: Keep in touch with seniors and get their advice and opinions too. Make sure you're happy with your final CV, and that it has been okay-ed by enough people before you ship it out.Don't make your CV on the last day. Put in sufficient effort - it will pay off.

Round: case workshop
Experience: BCG conducts a case workshop a couple of weeks before the interview process starts.Since the interview is entirely case based, make sure you pay attention in the case workshop. 
Tips: Also, it is advisable to form groups of 3-6 members with whom to practice business cases. I would suggest that you start with your case preparation in advance of the workshop, so you have things in perspective by then. Case books to practice cases from would most likely be circulated in advance. It also helps to make up your own cases, and have cases administered to you by people in Consulting.Do ask good questions in the case workshop. Although it's non-evaluative, it pays to make a good impression straight off the cuff.

Round: Case Study Interview
Experience: Four interviews (2 rounds with 2 interviews each). Out of the 21 shortlisted candidates, 12 made it to round 2. Out of the four interviews, one was with a Senior Partner, two with Team Leads, and one with a Principal.My first case was about optimizing the transportation logistics of a cement manufacturer. The second case was about figuring out the issue with the business model of a hotel franchise experiencing falling revenues. The third case was about figuring out the reason for falling revenues of a retail outlet in Sri Lanka. The fourth case was about troubleshooting a new house-loan sales strategy, which was not performing up to expectation.Same set of skills as mentioned above. Make sure you're clear in what you say. 
Tips: There will be some minimal HR, which you must prepare for. The discussion will be a lot more informal than you would expect, but make sure your answers are crisp, sharp and to the point. Feel free to be exploratory and creative, making sure you're telling the interviewer exactly what you're thinking. They'll be at least as smart as you are (trust me on this), and it won't take much effort on your part to explain what you're thinking. Work with him/her. This is important. Don't be too slow or too fast. Develop a style based on your practice sessions, and play your strengths.

College Name: IIT Kharagpur

I applied via Walk-in

Interview Preparation Tips

Round: Case Study Interview
Experience: Here we had to look at alternatives, such as cost of wearing glasses all your life, and the amount you would be spending, and discounting the amount you spend each year. I mentioned the cost of glasses, doctor visits, contacts, also laser surgery etc, to finally compute the price.
The second case which I got in the 3rd round, was also about a medical company which was facing a problem of falling profits. Here there were several problems, low productivity, and falling sales as well. Here the sales force was required to convince the doctors about its products, as they would then prescribe the medicines. Important thing here was whether they were targeting the right doctors who had a lot of patients, whether doctors were already loyal to some other company etc.
Tips: Practising a lot of cases not only with others, but also going through solutions on your own helps a lot. It is important to keep analyzing your mistakes rather than doing a lot of cases. HR answers are probably even more important than the case themselves, so it is important to prepare them well in advance.

Skills: Case Solving Ability, Case Analysis
College Name: IIM Lucknow

Ernst & Young Interview FAQs

How many rounds are there in Ernst & Young Java Developer interview?
Ernst & Young interview process usually has 1 rounds. The most common rounds in the Ernst & Young interview process are Technical.
How to prepare for Ernst & Young Java Developer 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 Java, Spring Boot, Microservices, Hibernate and J2Ee.
What are the top questions asked in Ernst & Young Java Developer interview?

Some of the top questions asked at the Ernst & Young Java Developer interview -

  1. How can we create our own immutable cl...read more
  2. Difference between checked and unchecked exceptio...read more
  3. How you would connect springboot project with data ba...read more

Tell us how to improve this page.

Ernst & Young Java Developer Interview Process

based on 3 interviews

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 2.8k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
KPMG India Interview Questions
3.5
 • 796 Interviews
ZS Interview Questions
3.3
 • 450 Interviews
BCG Interview Questions
3.7
 • 197 Interviews
Bain & Company Interview Questions
3.8
 • 106 Interviews
WSP Interview Questions
4.2
 • 91 Interviews
Gartner Interview Questions
4.1
 • 81 Interviews
View all
Ernst & Young Java Developer Salary
based on 62 salaries
₹4.9 L/yr - ₹21.5 L/yr
105% more than the average Java Developer Salary in India
View more details

Ernst & Young Java Developer Reviews and Ratings

based on 3 reviews

3.6/5

Rating in categories

3.4

Skill development

2.9

Work-life balance

2.8

Salary

4.0

Job security

4.0

Company culture

2.2

Promotions

2.4

Work satisfaction

Explore 3 Reviews and Ratings
Java Developer

Noida,

Pune

+1

4-6 Yrs

Not Disclosed

Java Developer

Noida,

Pune

+1

8-12 Yrs

Not Disclosed

Java Developer

Mumbai,

Mumbai

6-11 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
16.3k salaries
unlock blur

₹9 L/yr - ₹33.3 L/yr

Consultant
12.3k salaries
unlock blur

₹6.2 L/yr - ₹20 L/yr

Manager
7.7k salaries
unlock blur

₹16 L/yr - ₹48.5 L/yr

Assistant Manager
6.5k salaries
unlock blur

₹9.5 L/yr - ₹29 L/yr

Associate Consultant
4k salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Explore more salaries
Compare Ernst & Young with

Deloitte

3.8
Compare

PwC

3.4
Compare

EY Global Delivery Services ( EY GDS)

3.5
Compare

Accenture

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