Skip to content

KPMG Placement Papers 2024

Overview

This page collects KPMG placement papers from 2024 with previous-year questions, solutions, and the 2024 exam pattern. It is useful when you want real drive history: what the OA looked like, which question types repeated, and how solutions were approached. Work through the papers below to build speed and accuracy, then compare against newer 2025 material so your prep matches both established KPMG patterns and the latest shifts.

KPMG Online Assessment 2024 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: KPMG assessment platform
Success Rate: ~25-30% cleared assessment and advanced to interviews

KPMG Placement Papers 2024 - actual questions & solutions

This section contains practice questions styled on KPMG placement papers 2024 (previous-year 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: 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 2

Q2: A shopkeeper marks goods 40% above cost and gives a 10% discount. Find the profit percentage.

Solution:

Let CP = 100. MP = 140. SP after 10% discount = 126.

Profit % = 126 − 100 = 26%.

Answer: 26%

Question 3

Q3: Average of 5 numbers is 20. If one number 15 is replaced by 25, what is the new average?

Solution:

Old sum = 5 × 20 = 100. New sum = 100 − 15 + 25 = 110. New average = 110/5 = 22.

Answer: 22

Question 4

Q4: Pipe A fills a tank in 12 hours, pipe B in 18 hours. How long to fill together?

Solution:

Combined rate = 1/12 + 1/18 = (12+18)/(12×18). Time = 12×18/(12+18) = 7.2 hours.

Answer: 7.2 hours

Question 5

Q5: Find the next number in the series: 2, 6, 12, 20, 30, ?

Solution:

Pattern: n(n+1): 1×2, 2×3, 3×4, 4×5, 5×6 → next 6×7

Next term = 42.

Answer: 42

Question 6

Q6: Which number does not belong: 10, 25, 45, 54, 60, 75, 80?

Solution:

Pattern: All divisible by 5 except 54

Odd one out = 54.

Answer: 54

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: Fill in the blank: ‘She has been working here _____ 2019.’

Solution:

Use since with a point in time; use for with a duration.

Correct: since.

Answer: since

Question 9: maximum subarray sum

Show solution

Problem Statement: Find the contiguous subarray with the largest sum.

Example:

Input: [-2, 1, -3, 4, -1, 2, 1, -5, 4]
Output: 6 // [4, -1, 2, 1]

Solution (Java):

public int maxSubArray(int[] nums) {
int best = nums[0], cur = nums[0];
for (int i = 1; i < nums.length; i++) {
cur = Math.max(nums[i], cur + nums[i]);
best = Math.max(best, cur);
}
return best;
}

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

Question 10: merge two sorted lists

Show solution

Problem Statement: Merge two sorted linked lists and return a new sorted list.

Example:

Input: 1→2→4 , 1→3→4
Output: 1→1→2→3→4→4

Solution (Java):

public ListNode mergeTwoLists(ListNode a, ListNode b) {
ListNode dummy = new ListNode(0), cur = dummy;
while (a != null && b != null) {
if (a.val <= b.val) { cur.next = a; a = a.next; }
else { cur.next = b; b = b.next; }
cur = cur.next;
}
cur.next = (a != null) ? a : b;
return dummy.next;
}

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

Question 11: check palindrome

Show solution

Problem Statement: Return true if the string reads the same forward and backward (ignore case).

Example:

Input: "Level"
Output: true

Solution (Java):

public boolean isPalindrome(String s) {
s = s.toLowerCase();
int i = 0, j = s.length() - 1;
while (i < j) {
if (s.charAt(i++) != s.charAt(j--)) return false;
}
return true;
}

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

Key insights from 2024 KPMG 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: KPMG assessment platform
  6. Focus Areas: Quantitative reasoning, logical reasoning, communication, analytical thinking

KPMG 2024 interview experiences

Based on candidate experiences from 2024 KPMG interviews:

2024 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

Common 2024 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

2024 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 KPMG?”

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 KPMG’s business model and service offerings
  • Develop analytical thinking and problem-solving skills

For detailed interview experiences, visit KPMG Interview Experience page.

Preparation tips for KPMG 2024 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 KPMG assessment papers from 2020-2024 to understand 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

Comments & Suggestions

Similar companies

Deloitte · PwC · EY · McKinsey · BCG · Bain