Skip to content

Deutsche Bank Placement Papers 2024

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

Deutsche Bank Online Assessment 2024 pattern

Section titled “Deutsche Bank Online Assessment 2024 pattern”
Section Questions Time Difficulty
Coding Problems 2-3 90 min Medium-Hard

Deutsche Bank Placement Papers 2024 - actual questions & solutions

Section titled “Deutsche Bank Placement Papers 2024 - actual questions & solutions”

This section contains practice questions styled on Deutsche Bank 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.

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

Q2: A and B together finish a job in 10 days. B alone takes 15 days. How many days does A alone take?

Solution:

Together rate = 1/10. B’s rate = 1/15.

A’s rate = 1/10 − 1/15 = (15−10)/(10×15) = 5/150. Days for A alone = 150/5 = 30 days.

Answer: 30 days

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

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

Q5: Statements: All papers are items. Some items are cheap. Conclusions: I. Some papers are cheap. II. All items are papers.

Solution:

From the statements, papers⊆items and some items overlap cheap. That does not force some papers to be cheap, and ‘all items are papers’ reverses the first statement wrongly.

Neither conclusion follows.

Answer: Neither I nor II follows

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

Q7: Choose the antonym of ‘Transparent’.

Solution:

‘Transparent’ means roughly the opposite of Opaque.

Answer: Opaque

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

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)

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)

Show solution

Problem Statement: Rotate the array to the right by k steps.

Example:

Input: [1,2,3,4,5,6,7], k = 3
Output: [5,6,7,1,2,3,4]

Solution (Java):

public void rotate(int[] nums, int k) {
k %= nums.length;
reverse(nums, 0, nums.length - 1);
reverse(nums, 0, k - 1);
reverse(nums, k, nums.length - 1);
}
void reverse(int[] a, int l, int r) {
while (l < r) { int t = a[l]; a[l++] = a[r]; a[r--] = t; }
}

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

Key insights from 2024 Deutsche Bank Online Assessment

Section titled “Key insights from 2024 Deutsche Bank Online Assessment”
  1. Coding Section is Critical: Must solve 2-3 coding problems correctly to advance
  2. Banking System Focus: Strong emphasis on banking systems, risk calculation, financial technology
  3. Time Management: 2-3 problems in 90 minutes requires excellent speed and accuracy
  4. Success Rate: Only 10-15% cleared OA and advanced to interviews
  5. Platform: Deutsche Bank’s assessment platform or HackerRank
  6. Focus Areas: Arrays, trees, graphs, dynamic programming, banking systems, risk calculation

Based on candidate experiences from 2024 Deutsche Bank interviews:

2024 Interview Process:

  1. Online Assessment (90 minutes): 2-3 coding problems
  2. Technical Phone Screen (45-60 minutes): Coding problems, algorithm discussions, banking system concepts
  3. Onsite Interviews (4-5 rounds, 45-60 minutes each):
  • Coding rounds (2-3): Algorithms, data structures, problem-solving
  • System Design rounds: Banking systems, risk calculation, transaction processing, financial technology
  • Behavioral rounds: Problem-solving approach, risk management mindset, impact

Common 2024 Interview Topics:

  • Coding: Arrays, strings, trees, graphs, dynamic programming, financial calculations
  • System Design: Banking systems, risk calculation, transaction processing, financial technology
  • Behavioral: Problem-solving, risk management mindset, teamwork, impact
  • Deutsche Bank Technologies: Banking systems, risk calculation, transaction processing, financial technology

2024 Interview Questions Examples:

  • Risk Calculation System
  • Design Deutsche Bank’s transaction processing system (System Design)
  • Design Deutsche Bank’s risk management system (System Design)
  • Financial calculation problems

Success Tips:

  • Strong coding performance is essential - solve problems optimally
  • Understand banking systems and risk calculation concepts
  • Practice system design for banking systems and risk management
  • Prepare examples demonstrating problem-solving and risk management mindset
  • Learn Deutsche Bank’s products and banking technologies
  • Practice explaining your thought process clearly

For detailed interview experiences, visit Deutsche Bank Interview Experience page.

Preparation tips for Deutsche Bank 2024 pattern

Section titled “Preparation tips for Deutsche Bank 2024 pattern”
  1. Master Coding Fundamentals: Focus on solving 2-3 coding problems correctly - arrays, trees, graphs, DP
  2. Banking System Knowledge: Strong understanding of banking systems, risk calculation, financial technology
  3. Practice Previous Year Papers: Solve Deutsche Bank OA papers from 2020-2024 to understand patterns
  4. Time Management: Practice completing 2-3 coding problems in 90 minutes
  5. LeetCode Practice: Solve 200+ LeetCode problems focusing on arrays, strings, trees, graphs (medium-hard difficulty)
  6. Banking Focus: Practice problems related to banking systems and financial calculations
  7. System Design Mastery: Learn banking system design, risk calculation, transaction processing
  8. Risk Management: Understand risk management concepts and financial technology
  9. Behavioral Preparation: Prepare examples using STAR format - problem-solving, risk management mindset, impact
  10. Mock Tests: Take timed practice tests to improve speed and accuracy

Goldman Sachs · JP Morgan · Morgan Stanley · Bank of America · Capital One · Wells Fargo


Practice 2024 papers to understand Deutsche Bank OA pattern and prepare effectively!