EY Interview Process for Freshers: 2026 Guide
EY hires freshers for Audit, Tax, and Technology Consulting. This 2026 guide covers the interview round sequence, Java questions, and HR tips.
EY’s fresher hiring in India splits into two distinct tracks: GDS (Global Delivery Services) and the India BU. Most prep guides treat them as one process. They’re not.
What EY Hires Freshers For
Ernst and Young operates four global service lines: Assurance, Tax, Strategy and Transactions, and Consulting. In India, freshers enter through one of two doors.
EY GDS (Global Delivery Services) operates from Bangalore, Kochi, and Hyderabad. This is EY’s shared services and back-office delivery arm, and it accounts for the bulk of fresher hiring from engineering campuses. Roles include Technology Analyst, Process Associate, and Junior Developer. CSE and IT engineers looking at IT jobs in Bangalore for freshers will find EY GDS among the larger recruiters in that pool.
EY India BU (Business Unit) hires freshers for Audit, Tax, and Advisory roles from Gurgaon, Mumbai, Kolkata, and Chennai. Most roles here require a CA or Commerce background. Technology Consulting within the BU does bring in CS and IT engineers.
EY posts both campus and off-campus openings through the EY India careers portal. Off-campus applicants can apply year-round for GDS roles.
EY Interview Rounds: The Sequence
The EY fresher process runs three to four rounds. The order can vary by role:
- Round 1: Written Assessment — Quantitative aptitude, logical reasoning, and verbal ability for GDS technology roles. Audit and Tax tracks often replace this with an essay-writing exercise.
- Round 2: Technical Interview — Runs 30 to 45 minutes. Java OOP, data structures, SQL, and occasionally C++ basics. Conceptual questions dominate over live coding.
- Round 3: HR Interview — Runs 20 to 30 minutes. Behavioural questions using the STAR format (Situation, Task, Action, Result). Focuses on cultural fit and communication.
- Round 4: Manager or Partner Discussion — Present in some BU tracks. Expect “walk me through your final-year project” or “describe a time you disagreed with a team decision.”
Clearance at each round is a prerequisite for the next. There is no second-chance re-evaluation for early-round failures in the same hiring cycle.
Technical Round: Java, OOP, and Data Structures
EY’s technical round for engineering freshers covers four areas: Java fundamentals, OOP concepts, data structures, and database basics. Conceptual questions outnumber coding exercises.
Java and OOP
-
Q: What is the difference between an abstract class and an interface in Java?
- A: An abstract class can have both abstract and concrete methods, instance variables, and constructors. An interface (pre-Java 8) declared only abstract methods; post-Java 8 interfaces can have default and static methods but hold no instance state. A class can implement multiple interfaces but can extend only one abstract class.
-
Q: What is garbage collection in Java and how does it work?
- A: The JVM automatically reclaims memory occupied by objects no longer reachable from any live thread or static reference. The garbage collector identifies unreachable objects, marks them, and frees the memory in the sweep phase.
System.gc()is a hint to the JVM, not a guaranteed trigger.
- A: The JVM automatically reclaims memory occupied by objects no longer reachable from any live thread or static reference. The garbage collector identifies unreachable objects, marks them, and frees the memory in the sweep phase.
-
Q: What is the difference between
strcpyandmemcpyin C?- A:
strcpycopies a null-terminated string and stops at the null character.memcpycopies a fixed number of bytes regardless of content. Usememcpywhen copying binary data that may contain null bytes.
- A:
Data Structures
-
Q: What is a binary tree and how is it used?
- A: A binary tree is a hierarchical data structure where each node has at most two children (left and right). Common uses include binary search trees for ordered lookup, heaps for priority queues, and expression trees in compilers.
-
Q: How do you optimise SQL queries?
- A: Add indexes on frequently queried columns, avoid
SELECT *, useEXPLAINto inspect query plans, reduce nested subqueries, and preferJOINover correlated subqueries.
- A: Add indexes on frequently queried columns, avoid
For broader coverage before your EY round, work through most-asked Java interview questions and the commonly asked Java questions collection, which between them cover the full OOP and DSA scope that appears in company-corner technical rounds.
HR Round: What EY Assesses
EY’s core values are integrity, respect, teaming, energy, and inclusiveness. The HR round tests whether your instincts under pressure line up with those values.
Use the STAR method (Situation, Task, Action, Result) for every behavioural question.
Common questions and how to frame them:
-
“Tell me about yourself.” Anchor in your degree, a specific project or achievement, and one skill that connects to the role. Keep it to 90 seconds.
-
“Why EY?” Name a specific EY service line or initiative, not a generic “Big Four brand” answer. Review EY’s current priorities before the interview.
-
“What are your greatest strengths and weaknesses?” For weaknesses, name something real and describe a concrete step you’re taking to address it. Interviewers discount vague “I’m a perfectionist” answers.
-
“Where do you see yourself in 2 years?” Align the answer with EY’s progression path: for GDS, moving from analyst to lead; for Consulting, specialising in a domain.
-
“Describe a situation where you worked in a team under pressure.” Prepare a STAR story from college: a project deadline, a competition, or a practical exam. Keep it specific.
4-Week Prep Plan
If your EY campus placement window is 4 weeks out, here is how to distribute your time:
- Week 1: Core Java — OOP concepts, collections, exception handling, and threading basics. Work through standard OOP conceptual questions until you can answer them without notes.
- Week 2: Data structures (arrays, linked lists, trees, graphs) and SQL basics (joins, indexes, query optimisation). Do at least 20 DSA problems on paper, not just in an IDE.
- Week 3: Mock technical interviews with a peer. Three sessions, each 30 minutes. Focus on articulating your reasoning, not just reaching the right answer.
- Week 4: HR prep. Write out STAR stories for five scenarios: leadership, teamwork, failure, conflict, and a technical problem you solved. Rehearse until they sound natural.
Review AmbitionBox’s EY section for recent interview experiences from candidates who cleared the process; the role-specific feedback there is more current than any static guide.
EY’s Technology Consulting practice works with AI and analytics tooling on client projects. If you’re targeting that track, having a working prototype of an LLM-based tool gives you a concrete answer when the interviewer asks “what have you built recently?” TinkerLLM is where engineering students run their first LLM experiments at ₹299, the kind of hands-on output you can actually describe in a technical or HR round.
Primary sources
Frequently asked questions
Does EY hire freshers from all engineering branches?
EY GDS hires across CSE, ECE, EEE, and IT branches for process and technology roles. The India BU leans toward Finance, Commerce, and CA backgrounds for Audit and Tax, while Technology Consulting brings in CS and IT engineers.
How many rounds does EY have in fresher interviews?
Typically 3 to 4 rounds: a written assessment, a technical interview, one HR round, and sometimes a manager or partner discussion. The count varies by role and location.
What Java topics should I focus on for the EY technical round?
Focus on OOP principles (inheritance, polymorphism, encapsulation, abstraction), data structures (arrays, linked lists, binary trees), garbage collection, and the difference between abstract classes and interfaces.
What is EY GDS versus EY India BU?
EY GDS (Global Delivery Services) is EY's shared services and back-office division, with offices in Bangalore, Kochi, and Hyderabad. The India BU handles direct client work in Gurgaon, Mumbai, and Kolkata. Roles, salary bands, and day-to-day functions differ between the two.
What does the EY HR round check for freshers?
The HR round assesses communication, teamwork, and alignment with EY's core values: integrity, respect, teaming, and inclusiveness. Prepare STAR-format examples from college projects or internship experiences.
Does EY ask live coding problems in the technical round?
Most EY fresher technical rounds focus on conceptual questions rather than live coding sessions. Some Technology Consulting roles include a short coding exercise, but it is less common than at product-first companies.
A self-paced playground for building with LLMs.
TinkerLLM is FACE Prep's sister property. A guided environment for shipping real LLM applications, the kind of project that earns a paragraph on your resume, not a line.
Try TinkerLLM (₹299 launch)