2024 papers
PwC Placement Papers 2025
Overview
This page is a working set of PwC placement papers from 2025: from student reports questions, the 2025 online assessment pattern, and step-by-step solutions. Use it to see what PwC 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 PwC drive.
PwC 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: PwC assessment platform
Success Rate: ~25-30% cleared assessment and advanced to interviews
PwC Placement Papers 2025 - actual questions & solutions
This section contains practice questions styled on PwC 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: A train 240 m long crosses a pole in 16 seconds. Find its speed in km/h.
Solution:
Speed = distance/time = 240/16 m/s = (240/16) × (18/5) = 54 km/h.
Answer: 54 km/h
Question 2
Q2: 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 3
Q3: A and B together finish a job in 8 days. B alone takes 24 days. How many days does A alone take?
Solution:
Together rate = 1/8. B’s rate = 1/24.
A’s rate = 1/8 − 1/24 = (24−8)/(8×24) = 16/192. Days for A alone = 192/16 = 12 days.
Answer: 12 days
Question 4
Q4: 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 5
Q5: Find the next number in the series: 8, 6, 9, 23, 87, ?
Solution:
Pattern: ×1+6? Classic: ×1−2, ×2−3, ×3−4, ×4−5 → 8×1−2=6, 6×2−3=9, 9×3−4=23, 23×4−5=87, 87×5−6=429
Next term = 429.
Answer: 429
Question 6
Q6: If in a certain code PEN is written as 161514 and INK as 91411, how is TIP written?
Solution:
Pattern: positions concatenated T=20,I=9,P=16
Therefore TIP → 20916.
Answer: 20916
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: climbing stairs
Show solution
Problem Statement: You can climb 1 or 2 steps. How many distinct ways to climb n stairs?
Example:
Input: n = 4Output: 5Solution (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 10: 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 = 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)
Question 11: 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)
Key insights from 2025 PwC Online Assessment
- Aptitude Section is Critical: Must perform well in quantitative, logical, and verbal reasoning
- Group Discussion: Strong emphasis on communication skills and current affairs knowledge
- Time Management: 20-25 aptitude questions in 40 minutes + 10-15 technical in 20 minutes + GD in 20-30 minutes
- Success Rate: Only 25-30% cleared assessment and advanced to interviews
- Platform: PwC assessment platform
- Focus Areas: Quantitative reasoning, logical reasoning, communication, analytical thinking
- Enhanced Emphasis: Communication skills and current affairs awareness
PwC 2025 interview experiences
Based on recent candidate experiences from 2025 PwC interviews:
2025 Interview Process:
- Online Assessment (60-90 minutes): Aptitude (20-25 questions) + Technical (10-15 questions) + Group Discussion (1 topic)
- Technical Interview (45-60 minutes): Domain knowledge, problem-solving, analytical thinking
- 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 PwC?”
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 PwC’s business model and service offerings
- Develop analytical thinking and problem-solving skills
For detailed interview experiences from 2025, visit PwC Interview Experience page.
Preparation tips for PwC 2025 pattern
- Master Aptitude: Focus on quantitative, logical, and verbal reasoning - practice regularly
- Group Discussion Practice: Practice GD on current affairs and business topics - communication is key
- Practice Previous Year Papers: Solve PwC assessment papers from 2020-2025 to understand evolving patterns
- Time Management: Practice completing 20-25 aptitude questions in 40 minutes
- Technical Preparation: For tech roles, practice domain knowledge and problem-solving
- Current Affairs: Stay updated on current affairs and business news
- Business Knowledge: Understand consulting industry, business models, market trends
- Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, problem-solving
- Mock Tests: Take timed practice tests to improve speed and accuracy
- Analytical Thinking: Develop structured problem-solving and analytical thinking skills
- Communication Skills: Practice articulating thoughts clearly and concisely
- Stay Updated: Read business news and stay updated on current market trends

