Skip to content

Deloitte Placement Papers 2025

Overview

This page is a working set of Deloitte placement papers from 2025: from student reports questions, the 2025 online assessment pattern, and step-by-step solutions. Use it to see what Deloitte 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 Deloitte drive.

Deloitte Online Assessment 2025 pattern

Section Questions Time Difficulty Focus Areas
Aptitude 20-25 40 min Medium Quantitative, logical, verbal
Technical 10-15 20 min Medium Programming, DBMS, OOPs (for tech roles)
Case Studies 1-2 30 min Medium-Hard Business problem-solving

Total: 30-40 questions + case studies, 90 minutes
Platform: Deloitte assessment platform
Success Rate: ~25-30% cleared assessment and advanced to interviews

Deloitte Placement Papers 2025 - actual questions & solutions

This section contains practice questions styled on Deloitte 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: 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 2

Q2: The ratio of ages of A and B is 2:3. After 6 years, the ratio becomes 3:4. Find A’s present age.

Solution:

Let ages be 2x and 3x.

(2x + 6)/(3x + 6) = 3/4 4(2x + 6) = 3(3x + 6) 8x + 24 = 9x + 18 x = 6 A’s age = 2×6 = 12 years.

Answer: 12 years

Question 3

Q3: 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 4

Q4: 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 5

Q5: Pointing to a photo, Ravi said, ‘He is the son of my grandfather’s only son.’ How is the person related to Ravi?

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

Question 6

Q6: 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 7

Q7: Choose the synonym of ‘Genuine’.

Solution:

In placement verbal sections, ‘Genuine’ is closest in meaning to Authentic among common options.

Answer: Authentic

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: 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)

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 = 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 11: 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)

Key insights from 2025 Deloitte Online Assessment

  1. Aptitude Section is Critical: Must perform well in quantitative, logical, and verbal reasoning
  2. Case Studies: Strong emphasis on business problem-solving and analytical thinking
  3. Time Management: 20-25 aptitude questions in 40 minutes + 10-15 technical in 20 minutes + 1-2 case studies in 30 minutes
  4. Success Rate: Only 25-30% cleared assessment and advanced to interviews
  5. Platform: Deloitte assessment platform
  6. Focus Areas: Quantitative reasoning, logical reasoning, case studies, business problem-solving
  7. Enhanced Emphasis: Analytical thinking and structured problem-solving

Deloitte 2025 interview experiences

Based on recent candidate experiences from 2025 Deloitte interviews:

2025 Interview Process:

  1. Online Assessment (90 minutes): Aptitude (20-25 questions) + Technical (10-15 questions) + Case Studies (1-2)
  2. Group Discussion (20-30 minutes): Current affairs, business topics, case discussions
  3. Technical Interview (45-60 minutes): Domain knowledge, problem-solving, analytical thinking
  4. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation

2025 Interview Trends:

  • Increased emphasis on case study approach and structured problem-solving
  • More focus on analytical thinking and business acumen
  • 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
  • Case Studies: Business problem-solving, market analysis, strategic thinking
  • Technical: Domain knowledge (for tech roles), programming concepts, DBMS, OOPs
  • Behavioral: Problem-solving approach, teamwork, leadership, communication

2025 Interview Questions Examples:

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?”
  • “Analyze a business problem and develop a strategic solution.”
  • “Estimate the market size for a specific industry.”

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

Technical Questions (for tech roles):

  • Programming concepts and problem-solving
  • DBMS and database design
  • OOPs concepts
  • System design basics

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Master case study approach - structured problem-solving framework
  • Prepare behavioral examples using STAR format
  • Practice group discussions on current affairs and business topics
  • Understand Deloitte’s business model and service offerings
  • Develop analytical thinking and problem-solving skills

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

Preparation tips for Deloitte 2025 pattern

  1. Master Aptitude: Focus on quantitative, logical, and verbal reasoning - practice regularly
  2. Case Study Practice: Learn structured approach to case studies - problem identification, analysis, solution
  3. Practice Previous Year Papers: Solve Deloitte 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 programming, DBMS, OOPs concepts
  6. Group Discussion Practice: Practice GD on current affairs and business topics
  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. Stay Updated: Read business news and stay updated on current market trends

Comments & Suggestions

Similar companies

EY · PwC · KPMG · McKinsey · BCG · Bain