Skip to content

Deloitte Placement Papers 2024

Overview

This page collects Deloitte 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 Deloitte patterns and the latest shifts.

Deloitte Online Assessment 2024 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 2024 - actual questions & solutions

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

Q2: Simple interest on ₹8000 at 10% per annum for 2 years is?

Solution:

SI = (P × R × T)/100 = (8000 × 10 × 2)/100 = ₹1600.

Answer: ₹1600

Question 3

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

Q4: A train 180 m long crosses a pole in 12 seconds. Find its speed in km/h.

Solution:

Speed = distance/time = 180/12 m/s = (180/12) × (18/5) = 54 km/h.

Answer: 54 km/h

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

Q7: 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 8

Q8: Choose the antonym of ‘Scarce’.

Solution:

‘Scarce’ means roughly the opposite of Abundant.

Answer: Abundant

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

Question 10: binary tree level order

Show solution

Problem Statement: Return the level-order traversal of a binary tree.

Example:

Input: [3,9,20,null,null,15,7]
Output: [[3],[9,20],[15,7]]

Solution (Java):

public List<List<Integer>> levelOrder(TreeNode root) {
List<List<Integer>> res = new ArrayList<>();
if (root == null) return res;
Queue<TreeNode> q = new ArrayDeque<>();
q.add(root);
while (!q.isEmpty()) {
int sz = q.size();
List<Integer> level = new ArrayList<>();
for (int i = 0; i < sz; i++) {
TreeNode n = q.poll();
level.add(n.val);
if (n.left != null) q.add(n.left);
if (n.right != null) q.add(n.right);
}
res.add(level);
}
return res;
}

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

Deloitte 2024 interview experiences

Based on candidate experiences from 2024 Deloitte interviews:

2024 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

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

2024 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, visit Deloitte Interview Experience page.

Preparation tips for Deloitte 2024 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-2024 to understand 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

Comments & Suggestions

Similar companies

EY · PwC · KPMG · McKinsey · BCG · Bain