PwC 2025 papers
Latest PwC placement papers with current year questions
This page collects PwC 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 PwC patterns and the latest shifts.
| 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: PwC assessment platform
Success Rate: ~25-30% cleared assessment and advanced to interviews
This section contains practice questions styled on PwC 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.
Solution:
SI = (P × R × T)/100 = (5000 × 8 × 3)/100 = ₹1200.
Answer: ₹1200
Solution:
Let original = 100. After +20% → 120. After −20% → 120 − 24 = 96.
Net change = 100 − 96 = 4. Net % = 4% decrease (always a loss of (20/10)² %).
Answer: 4% decrease
Solution:
Speed = distance/time = 180/12 m/s = (180/12) × (18/5) = 54 km/h.
Answer: 54 km/h
Solution:
Let CP = 100. MP = 150. SP after 20% discount = 120.
Profit % = 120 − 100 = 20%.
Answer: 20%
Solution:
From the statements, books⊆items and some items overlap cheap. That does not force some books to be cheap, and ‘all items are books’ reverses the first statement wrongly.
Neither conclusion follows.
Answer: Neither I nor II follows
Solution:
Grandfather’s only son = Ravi’s father. Son of Ravi’s father = Ravi himself (or his brother).
In standard puzzle framing with one son implied for the speaker context: the person is Ravi’s brother (or Ravi). Most campus keys take Brother.
Answer: Brother
Solution:
In placement verbal sections, ‘Abundant’ is closest in meaning to Plentiful among common options.
Answer: Plentiful
Solution:
Natural order: Q-R-P-S → Hard work is essential to succeed in any field.
Answer: QRPS
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 = 9Output: [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)
Problem Statement: Given a string of brackets, determine if it is valid.
Example:
Input: "()[]{}"Output: trueSolution (Java):
public boolean isValid(String s) { Deque<Character> st = new ArrayDeque<>(); Map<Character, Character> pair = Map.of(')', '(', ']', '[', '}', '{'); for (char c : s.toCharArray()) { if (pair.containsValue(c)) st.push(c); else if (st.isEmpty() || st.pop() != pair.get(c)) return false; } return st.isEmpty();}Time Complexity: O(n)
Space Complexity: O(n)
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)
Based on candidate experiences from 2024 PwC interviews:
2024 Interview Process:
Common 2024 Interview Topics:
2024 Interview Questions Examples:
Group Discussion Topics:
Behavioral Questions:
Case Study Questions:
Success Tips:
For detailed interview experiences, visit PwC Interview Experience page.
PwC 2025 papers
Latest PwC placement papers with current year questions
PwC interview experience
Real interview experiences from successful candidates
PwC preparation guide
Comprehensive preparation strategy for PwC placement
PwC main page
Complete PwC placement guide with eligibility, process, and salary
Deloitte · EY · KPMG · McKinsey · BCG · Bain
Practice 2024 papers to understand PwC pattern and prepare effectively!