Skip to content

EY Placement Papers 2025

Overview

This page is a working set of EY placement papers from 2025: from student reports questions, the 2025 online assessment pattern, and step-by-step solutions. Use it to see what EY actually asked in the latest cycle, how hard the rounds were, and which themes (DSA, system design, aptitude, or role-specific topics) mattered most. Practice the problems below under timed conditions, then cross-check with the interview and preparation guides if you are targeting an upcoming EY drive.

EY Online Assessment 2025 pattern

Section Questions Time Difficulty Focus Areas
Aptitude 20-25 40 min Medium Quantitative, logical, verbal
Group Discussion 1 topic 20-30 min Medium Current affairs, business topics
Technical 10-15 20 min Medium Domain knowledge (for tech roles)

Total: 30-40 questions + GD, 60-90 minutes
Platform: EY assessment platform
Success Rate: ~25-30% cleared assessment and advanced to interviews

EY Placement Papers 2025 - actual questions & solutions

This section contains practice questions styled on EY placement papers 2025 (recent-cycle pattern), with worked solutions. Use them as timed sectional drills - from student reports drives vary by college and role, so treat this as a high-signal practice bank, not an official paper dump.

Question 1

Q1: Simple interest on ₹5000 at 8% per annum for 3 years is?

Solution:

SI = (P × R × T)/100 = (5000 × 8 × 3)/100 = ₹1200.

Answer: ₹1200

Question 2

Q2: A and B together finish a job in 12 days. B alone takes 18 days. How many days does A alone take?

Solution:

Together rate = 1/12. B’s rate = 1/18.

A’s rate = 1/12 − 1/18 = (18−12)/(12×18) = 6/216. Days for A alone = 216/6 = 36 days.

Answer: 36 days

Question 3

Q3: Pipe A fills a tank in 10 hours, pipe B in 15 hours. How long to fill together?

Solution:

Combined rate = 1/10 + 1/15 = (10+15)/(10×15). Time = 10×15/(10+15) = 6 hours.

Answer: 6 hours

Question 4

Q4: A number is increased by 10% and then decreased by 10%. Find the net percentage change.

Solution:

Let original = 100. After +10% → 110. After −10% → 110 − 11 = 99.

Net change = 100 − 99 = 1. Net % = 1% decrease (always a loss of (10/10)² %).

Answer: 1% decrease

Question 5

Q5: If in a certain code CAT is written as 3120 and DOG as 4157, how is BAT written?

Solution:

Pattern: letter positions: B=2,A=1,T=20

Therefore BAT → 2120.

Answer: 2120

Question 6

Q6: Statements: All pens are stationery. Some stationery are useful. Conclusions: I. Some pens are useful. II. All stationery are pens.

Solution:

From the statements, pens⊆stationery and some stationery overlap useful. That does not force some pens to be useful, and ‘all stationery are pens’ reverses the first statement wrongly.

Neither conclusion follows.

Answer: Neither I nor II follows

Question 7

Q7: Identify the error: ‘Neither of the boys have submitted their assignment.’

Solution:

‘Neither’ is singular → verb should be has, not have.

Correct: Neither of the boys has submitted his/their assignment.

Answer: have → has

Question 8

Q8: Arrange the parts into a meaningful sentence: P) to succeed Q) hard work R) is essential S) in any field

Solution:

Natural order: Q-R-P-S → Hard work is essential to succeed in any field.

Answer: QRPS

Question 9: two sum

Show solution

Problem Statement: Given an array of integers and a target, return indices of two numbers that add up to target.

Example:

Input: nums = [2, 7, 11, 15], target = 9
Output: [0, 1]

Solution (Java):

public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
int need = target - nums[i];
if (map.containsKey(need)) return new int[]{map.get(need), i};
map.put(nums[i], i);
}
return new int[]{};
}

Time Complexity: O(n)
Space Complexity: O(n)

Question 10: climbing stairs

Show solution

Problem Statement: You can climb 1 or 2 steps. How many distinct ways to climb n stairs?

Example:

Input: n = 4
Output: 5

Solution (Java):

public int climbStairs(int n) {
if (n <= 2) return n;
int a = 1, b = 2;
for (int i = 3; i <= n; i++) {
int c = a + b; a = b; b = c;
}
return b;
}

Time Complexity: O(n)
Space Complexity: O(1)

Question 11: detect cycle in linked list

Show solution

Problem Statement: Return true if the linked list has a cycle.

Example:

Input: 3→2→0→-4→(back to 2)
Output: true

Solution (Java):

public boolean hasCycle(ListNode head) {
ListNode slow = head, fast = head;
while (fast != null && fast.next != null) {
slow = slow.next;
fast = fast.next.next;
if (slow == fast) return true;
}
return false;
}

Time Complexity: O(n)
Space Complexity: O(1)

Key insights from 2025 EY Online Assessment

  1. Aptitude Section is Critical: Must perform well in quantitative, logical, and verbal reasoning
  2. Group Discussion: Strong emphasis on communication skills and current affairs knowledge
  3. Time Management: 20-25 aptitude questions in 40 minutes + 10-15 technical in 20 minutes + GD in 20-30 minutes
  4. Success Rate: Only 25-30% cleared assessment and advanced to interviews
  5. Platform: EY assessment platform
  6. Focus Areas: Quantitative reasoning, logical reasoning, communication, analytical thinking
  7. Enhanced Emphasis: Communication skills and current affairs awareness

EY 2025 interview experiences

Based on recent candidate experiences from 2025 EY interviews:

2025 Interview Process:

  1. Online Assessment (60-90 minutes): Aptitude (20-25 questions) + Technical (10-15 questions) + Group Discussion (1 topic)
  2. Technical Interview (45-60 minutes): Domain knowledge, problem-solving, analytical thinking
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation

2025 Interview Trends:

  • Increased emphasis on communication skills and current affairs knowledge
  • More focus on group discussion performance
  • Enhanced behavioral questions about leadership and teamwork
  • Questions about current market trends and business scenarios

Common 2025 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, verbal reasoning
  • Group Discussion: Current affairs, business topics, case discussions
  • Technical: Domain knowledge (for tech roles), analytical thinking
  • Behavioral: Problem-solving approach, teamwork, leadership, communication

2025 Interview Questions Examples:

Group Discussion Topics:

  • Current affairs and business topics
  • Case studies and business scenarios
  • Industry trends and market analysis

Behavioral Questions:

  • “Describe a time you took initiative in a team.”
  • “Tell me about a time you dealt with failure.”
  • “How do you prioritize tasks when managing multiple projects?”
  • “Describe a leadership experience.”
  • “How do you handle conflict in a team?”
  • “Why EY?”

Technical Questions (for tech roles):

  • Domain knowledge and problem-solving
  • Analytical thinking and case analysis
  • System design basics

Case Study Questions:

  • “When a firm has a market share of 50% in Germany and 30% in Europe, what is the market share of the firm in Europe without Germany?”
  • “You are given 100 million Euro to set up your own bank. Which customer segment would you focus on, and which strategy would you use for that?”
  • Business problem-solving scenarios

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Master group discussion skills - communication, current affairs knowledge
  • Prepare behavioral examples using STAR format
  • Practice group discussions on current affairs and business topics
  • Understand EY’s business model and service offerings
  • Develop analytical thinking and problem-solving skills

For detailed interview experiences from 2025, visit EY Interview Experience page.

Preparation tips for EY 2025 pattern

  1. Master Aptitude: Focus on quantitative, logical, and verbal reasoning - practice regularly
  2. Group Discussion Practice: Practice GD on current affairs and business topics - communication is key
  3. Practice Previous Year Papers: Solve EY assessment papers from 2020-2025 to understand evolving patterns
  4. Time Management: Practice completing 20-25 aptitude questions in 40 minutes
  5. Technical Preparation: For tech roles, practice domain knowledge and problem-solving
  6. Current Affairs: Stay updated on current affairs and business news
  7. Business Knowledge: Understand consulting industry, business models, market trends
  8. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, problem-solving
  9. Mock Tests: Take timed practice tests to improve speed and accuracy
  10. Analytical Thinking: Develop structured problem-solving and analytical thinking skills
  11. Communication Skills: Practice articulating thoughts clearly and concisely
  12. Stay Updated: Read business news and stay updated on current market trends

Comments & Suggestions

Similar companies

Deloitte · PwC · KPMG · McKinsey · BCG · Bain