2025 papers
Deutsche Bank Placement Papers 2024
Overview
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 | Questions | Time | Difficulty |
|---|---|---|---|
| Coding Problems | 2-3 | 90 min | Medium-Hard |
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.
Question 1
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
Question 2
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
Question 3
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
Question 4
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
Question 5
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
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: Choose the antonym of ‘Transparent’.
Solution:
‘Transparent’ means roughly the opposite of Opaque.
Answer: Opaque
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: 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 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: rotate array right by k
Show solution
Problem Statement: Rotate the array to the right by k steps.
Example:
Input: [1,2,3,4,5,6,7], k = 3Output: [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
- Coding Section is Critical: Must solve 2-3 coding problems correctly to advance
- Banking System Focus: Strong emphasis on banking systems, risk calculation, financial technology
- Time Management: 2-3 problems in 90 minutes requires excellent speed and accuracy
- Success Rate: Only 10-15% cleared OA and advanced to interviews
- Platform: Deutsche Bank’s assessment platform or HackerRank
- Focus Areas: Arrays, trees, graphs, dynamic programming, banking systems, risk calculation
Deutsche Bank 2024 interview experiences
Based on candidate experiences from 2024 Deutsche Bank interviews:
2024 Interview Process:
- Online Assessment (90 minutes): 2-3 coding problems
- Technical Phone Screen (45-60 minutes): Coding problems, algorithm discussions, banking system concepts
- 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
- Master Coding Fundamentals: Focus on solving 2-3 coding problems correctly - arrays, trees, graphs, DP
- Banking System Knowledge: Strong understanding of banking systems, risk calculation, financial technology
- Practice Previous Year Papers: Solve Deutsche Bank OA papers from 2020-2024 to understand patterns
- Time Management: Practice completing 2-3 coding problems in 90 minutes
- LeetCode Practice: Solve 200+ LeetCode problems focusing on arrays, strings, trees, graphs (medium-hard difficulty)
- Banking Focus: Practice problems related to banking systems and financial calculations
- System Design Mastery: Learn banking system design, risk calculation, transaction processing
- Risk Management: Understand risk management concepts and financial technology
- Behavioral Preparation: Prepare examples using STAR format - problem-solving, risk management mindset, impact
- Mock Tests: Take timed practice tests to improve speed and accuracy
Comments & Suggestions
Related resources
Similar companies
Goldman Sachs · JP Morgan · Morgan Stanley · Bank of America · Capital One · Wells Fargo

