Upload Button Icon Add office photos

Deutsche Bank

Compare button icon Compare button icon Compare
3.9

based on 3.3k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Deutsche Bank Interview Questions, Process, and Tips

Updated 28 Jan 2025

Top Deutsche Bank Interview Questions and Answers

View all 303 questions

Deutsche Bank Interview Experiences

Popular Designations

362 interviews found

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It was first entrance round which was conducted in online mode. It had 2 coding question and 10 mcqs.it was around 90 min in total and took place in evening at around 5 pm. 

  • Q1. 

    Rooks Placing Problem Statement

    You are given an n×n chessboard where rows and columns are numbered from 0 to n-1. Each cell (r, c) is located at the intersection of row 'r' and column 'c'. A rook is a ch...

  • Ans. 

    my solution was similar to this

    var allSolutions = _.memoize(function(n) {

    if (!n) return [];

    if (n === 1) return [[[true]]];
    var solutions = [];

    for (var i = 0; i < n; i++) {

    _.each(allSolutions(n-1), function(nMinusOneSolution){

    solutions.push(generateSolution(nMinusOneSolution, i));

    });

    }

    return solutions;

    });



    var generateSolution = function(nMinusOneSolution, i) {

    var n = nMinusOneSolution.length + 1;

    var newSet = [];

    for (var...

  • Answered Anonymously
Round 2 - Video Call 

Round duration - 40 minutes
Round difficulty - Medium

It was the first interview round conducted on skype. Each of the candidates were provided with the name of the interviewer and time slot in advance, and were expected to join to the link provided . The interviewer was really sincere and asked question straight to the point and asked me to write 2 3 codes for which he gave me questions and asked me to share my screen.

Round 3 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

it was a technical and hr round .he asked me about my projects ,discussed my resume and questioned my skills and projects . He asked me why I wanted to join this company. Here also we were told about the result of previous round, interviewer and time slot in advance.

  • Q1. Why do you want to join this company, and can you tell me about your projects?
  • Ans. 

    Tip 1 : be honest
    Tip 2 : just say what you feel

  • Answered Anonymously
Round 4 - Video Call 

Round duration - 30 minutes
Round difficulty - Easy

He discussed my project and what all changes I would like to implement in near future and about resources and references We were given time slot and name of interviewer in advance.

Interview Preparation Tips

Eligibility criteriaAbove 7.5 cgpaDeutsche Bank interview preparation:Topics to prepare for the interview - data structures , algorithms , object oriented programming , dynamic programming , standard template library concepts in c++ , common algorithms ,competitive programming , web development basics, c and c++ languages in depth,discrete structures ,DBMS, mysql.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Have steadiness in competitive programming 
Tip 2 : Make your basics very strong
Tip 3 : Do some projects

Application resume tips for other job seekers

Tip 1 : Have a clear and developmental resume i.e mention your achievements year wise
Tip 2 : Try not to mention your primary educations details and achievements until they are something really extraordinary
Tip 3 : mention and elaborate your projects properly yet concisely.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Deutsche Bank Software Developer Intern Interview Questions and Answers

Q1. Longest Consecutive SequenceYou are given an unsorted array/list 'ARR' of 'N' integers. Your task is to return the length of the longest consecutive sequence. The consecutive sequence is in the form ['NUM', 'NUM' + 1, 'NUM' + 2, ..., 'NUM' ... read more
View answer (4)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The test started at 4 in the afternoon. It was online coding test from home only.

  • Q1. 

    Query and Matrix Problem Statement

    You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types:

    Query 1: 1 R inde...
  • Ans. Brute Force

    A simple idea is to traverse the given row or column. If you come across a query that is of type 1 then swap 0 with 1 and vice-versa and for the query of type 2 initialize a variable ‘COUNT’ and increment count when you encounter ‘0’ and return ‘COUNT’.

     

    The steps are as follows:

     

    • If the type of query is 1.
      • If we have to consider row ‘R’ at the given ‘INDEX’
        • Run a loop for row ‘INDEX’  and every c...
  • Answered Anonymously
  • Q2. 

    Jump Game Problem Statement

    In this problem, you are given an array ARR consisting of N integers. Your task is to determine the minimum number of jumps required to reach the last index of the array N - 1....

  • Ans. Brute Force Approach
    • For each index, we find all possible locations we can jump to i.e if we are currently at an index ’i’ and ‘ARR[i]’ = k then we recursively find the answer for all indices from i + 1 to i + k and take the minimum of the answer and add 1 to it to find the minimum number of jumps to reach index last index from index ‘i’.
    • For example, Consider the array : 2, 3, 1, 4
    • We will have the following recursion tr...
  • Answered Anonymously
Round 2 - Face to Face 

Round duration - 40 Minutes
Round difficulty - Medium

Timing was 11 a.m. approximately. It was an online technical round.

Round 3 - Face to Face 

Round duration - 30 Minutes
Round difficulty - Medium

This was the ProFit(Professional Fitment) Round to check if we are suitable for their company and if we find their company suitable for ourselves.
Timing was around p.m.

Round 4 - HR 

Round duration - 10 Minutes
Round difficulty - Easy

Timing was around 9 p.m.

Interview Preparation Tips

Eligibility criteria7 CGPA and above, No active backlogsDeutsche Bank interview preparation:Topics to prepare for the interview - OOPS , Data Structure , Algorithms , DBMS , Dynamic Programming ,Time required to prepare for the interview - 4.5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice as more as you can , I won't specify any number but be consistent.And 
Tip 2 : Participate in short coding challenges .
Tip 3 : Do at least 2-3 good projects.

Application resume tips for other job seekers

Tip 1 : Be confident of how to explain the things that you wrote in the resume . Do not put false stuff . 
Tip 2 : Projects are a good highlight.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Deutsche Bank Software Developer Intern Interview Questions and Answers

Q1. Longest Consecutive SequenceYou are given an unsorted array/list 'ARR' of 'N' integers. Your task is to return the length of the longest consecutive sequence. The consecutive sequence is in the form ['NUM', 'NUM' + 1, 'NUM' + 2, ..., 'NUM' ... read more
View answer (4)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The test was conducted at 11 am in Hackerearth and was of 90 minutes. The time was enough to solve both the questions as well as the MCQ's. It consisted of 2 coding questions and 10 MCQs. The level of questions was medium and the mcqs ranged from easy to difficult.

  • Q1. 

    Find the Minimum Cost to Reach Destination via Train

    Given 'N' stations on a train route, where the train travels from station 0 to 'N'-1, determine the minimum cost to reach the final station using given...

  • Ans. 

    The solution is to use DP and create a 2D table and fill the table using above given recursive formula.
    minCost(0, N-1) = MIN { cost[0][n-1], cost[0][1] + minCost(1, N-1), ........, minCost(0, N-2) + cost[N-2][n-1] }
    The extra space required in this solution would be O(N2) and time complexity would be O(N3).
    This solution was accepted however, solution using recursion wasn't because time limit exceeded.

  • Answered Anonymously
  • Q2. 

    Next Smaller Palindrome Problem Statement

    You are provided with a palindrome number 'N' presented as a string 'S'. The task is to determine the largest palindrome number that is strictly less than 'N'.

    I...

  • Ans. 

    There can be three different types of inputs that need to be handled separately.

    The input number is palindrome and has all 9s. For example “9 9 9”. Output should be “1 0 0 1”
    The input number is not palindrome. For example “1 2 3 4”. Output should be “1 3 3 1”
    The input number is palindrome and doesn’t have all 9s. For example “1 2 2 1”. Output should be “1 3 3 1”.
    So now you just need to think how can we iterate from mid...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

After clearing the coding round, Video call Interview was conducted at 12 pm. The interviewer was cooperative and gave hints whenever I stuck upon any question.

  • Q1. 

    Longest Consecutive Sequence Problem Statement

    You are provided with an unsorted array/list ARR of N integers. Your task is to determine the length of the longest consecutive sequence present in the array...

  • Ans. 

    Initially I gave the naive solution i.e, the brute force.
    My second solution was to sort the array and then get the longest sequence.
    I finally came to a better solution which was by using hashmaps

  • Answered Anonymously
Round 3 - HR 

Round duration - 40 minutes
Round difficulty - Easy

I already gave the technical round so I wasn't that nervous. Also the interviewer was patiently listening the answers. It seemed like a normal conversation.

Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

It was the last round. 15 students were selected for this round. I was tired since I already gave 2 interviews.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. Eligibility criteria7 CGPADeutsche Bank interview preparation:Topics to prepare for the interview - C++, Data Structures, Dynamic Programming, Algorithms, Operating Systems, Object Oriented Programming, Database Management System, PythonTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Having proper knowledge over Data Structures and Algorithms is crucial. Have your concepts cleared and then select one coding platform( for example, leetcode, CodeZen, GeeksForGeeks) and try to practice at least 5 questions everyday topic-wise. I completed around 300+ questions on leetcode, 100+ questions on geeks for geeks and around 30-40 problems on InterviewBit.
Tip 2 : Focus on time and space complexity. Students usually ignore this fact. However, you should think about how you can optimize your code further. Hence, instead of trying to solve more problems, try to analyze it.
Tip 3 : It sometimes gets easy to demotivate but you need to keep practicing daily. Don't cut down your sleep and diet. Healthy lifestyle and personality development also plays a crucial part.

Application resume tips for other job seekers

Tip 1 : Do not mention those skills, projects or achievements which you haven't achieved. The interviewer is intelligent enough to verify them.
Tip 2 : Do not keep your resume too long, and do not mention irrelevant details. One page resume for an intern is enough.
Tip 3 : Have projects related to the field which you are applying for, this shows you are already experienced in the field.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Deutsche Bank Software Developer Intern Interview Questions and Answers

Q1. Longest Consecutive SequenceYou are given an unsorted array/list 'ARR' of 'N' integers. Your task is to return the length of the longest consecutive sequence. The consecutive sequence is in the form ['NUM', 'NUM' + 1, 'NUM' + 2, ..., 'NUM' ... read more
View answer (4)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

What people are saying about Deutsche Bank

View All
masterpie
Verified Icon
2w
works at
Lloyd Law College
#Overtime
🤣🤣🤣
FeedCard Image
Got a question about Deutsche Bank?
Ask anonymously on communities.

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

First round took place at around 10:15 AM. It was a online round. The interviewer was very sweet, and he asked me if i knew about the problems before

  • Q1. 

    Next Smaller Palindrome Problem Statement

    You are given a palindrome number represented as a string S. Your task is to find the largest palindrome number that is strictly less than S.

    Example:

    Input:
    T...
  • Ans. Brute Force
    • Given the fact that the input number is a palindrome itself makes this problem very trivial.
    • Let us assume that the given string str is a palindrome, so we know that ‘S’ comprises of two halves  ‘S1’ and ‘S2’ i.e ‘S’ = ‘S1' + ‘S2', where ‘S1' and ‘S2’ are two strings, and ‘S2’ is the reverse of ‘S1’(in case of odd length palindromes ‘S2’ won’t have the last character of ‘S1’). So a change in any of the h...
  • Answered Anonymously
  • Q2. Can you explain how heaps are implemented?
  • Ans. 

    Step 1: Heaps require the property of sorting themselves such that the smallest or largest element is at the top. So we need something that can sort itself in reasonable time complexity every-time a new element is added or deleted. A good way to get that is a binary search tree which can do this in O(log n).

  • Answered Anonymously
Round 2 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

It took place at around 3:15 PM.

  • Q1. 

    Sort a Stack Problem Statement

    You are provided with a stack consisting of 'N' integers. The goal is to sort this stack in descending order by utilizing recursion.

    Allowed Stack Operations:

    is_empty(S) ...
  • Ans. 

    Sorted it using recursion, wherein the current element (top) is taken out and the function called by recursion to sort the remaining stack. Then the element is inserted in its right place.

  • Answered Anonymously
Round 3 - Coding Test 

Round duration - 20 minutes
Round difficulty - Easy

HR round
took place in the evening at around 7:20 PM.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Punjab Engineering College(Deemed To be University). I applied for the job as SDE - Intern in PuneEligibility criteriaAbove 7 CGPADeutsche Bank interview preparation:Topics to prepare for the interview - OOPS from geeksforgeeks articles; Data Structures, Dynamic Programming, Algorithms from variuos coding platforms including leetcode and geeksforgeeks; Database Management System from youtube (channel Gate Smashers), Operating System from youtube (channel Gate Smashers) and geeksforgeeksTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Begin early, but do not regret your timing.
Tip 2 : Be consistent. Do something everyday. Small progress every single day is better than no a rushed, hard-work day and then nothing for a week
Tip 3 : Relax and don't stress. Never doubt even if you don't see progress or have to face rejection. Trust your timing.

Application resume tips for other job seekers

Tip 1 : Include only genuine information.
Tip 2 : It should never be of more than one page

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Deutsche Bank Software Developer Intern Interview Questions and Answers

Q1. Longest Consecutive SequenceYou are given an unsorted array/list 'ARR' of 'N' integers. Your task is to return the length of the longest consecutive sequence. The consecutive sequence is in the form ['NUM', 'NUM' + 1, 'NUM' + 2, ..., 'NUM' ... read more
View answer (4)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Deutsche Bank interview questions for popular designations

 Analyst

 (61)

 Associate

 (34)

 Senior Analyst

 (23)

 Financial Analyst

 (13)

 Associate Vice President

 (9)

 Software Developer Intern

 (8)

 Assistant Vice President

 (7)

 Associate Engineer

 (7)

Technical Analyst-Intern Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The test was conducted at around 4 pm on Hackerearth and was of 90 minutes.It consisted of 2 coding questions and 10 MCQs.The first coding question was an easy algorithm and hash table based question, while the 2nd was of medium level and of DP.The difficulty of MCQs varied from easy to hard.

  • Q1. 

    Matrix Cell Value Placement

    You are provided with an integer N representing the size of an N * N matrix. Initially, each cell of the matrix is empty. You are also given a number K, indicating the number o...

  • Ans. 

    After every task, no. of empty cells are given by:
    (n-row.size())*(n-col.size())
    where row and col are 2 sets and we push each i,j into it.

  • Answered Anonymously
  • Q2. 

    Minimum Cost to Reach the End Problem Statement

    Given an array of integers ARR and an integer 'K', your goal is to reach the end of the array starting from the beginning with minimum cost. You can move fr...

  • Ans. 

    This is a DP based problem.
    The state is the index you are currently at and the transition is the forward and backward jumps.

  • Answered Anonymously
Round 2 - Video Call 

Round duration - 45 minutes
Round difficulty - Hard

It was early morning around 10A.M. shortly after their PPTs.
The interview was conducted via Skype.
It started with a an introductory question of Tell me about yourself.I was asked about my favourite subject.
The interviewer was really helpful.
I was given questions to code on arrays along with theoritical questions of Trees, LinkedLists, OOPs and DBMS.
I was also made to write a few SQL queries.
In the end I was asked if I had any question, to which I asked one.

Round 3 - Video Call 

Round duration - 30 minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Maulana Azad National Institute of Technology, Bhopal. I applied for the job as Technical Analyst-Intern in PuneEligibility criteriaAbove 7 CGPADeutsche Bank interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Database Management Systems, Operating Systems, Analysis and Design of Algorithms, Object Oriented ProgrammingTime required to prepare for the interview - 3.5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice a lot of data structures based questions, this is the most important part of the interviews/tests of any company.Solve atleast 200 questions on GeeksforGeeks or LeetCode.You can sort the questions company or topic wise.A month before the hiring process starts, I gave several coding contests on Coding Ninjas.Try giving as many such contests as possible.
I also attended many live webinars of Coding Ninjas of topics Backtracking, Algorithms, etc. which helped me a lot in brushing up my skills and cleared my concepts to a great extent.How to Ace your coding interview hosted by them was also really insighful.
Tip 2 : Confidence is the key to crack any interview.If stuck on any question, just ask for hints.The interviewers are mostly really helpful.Also, do keep on telling them whatever approach you have in mind.
Tip 3 : Strengthen your concepts of DBMS and OOPs.These are very important subjects and should be revised a day before the interview!

Application resume tips for other job seekers

Tip 1: A good resume includes your skills, projects and experience(internships/volunteer/academic).One should have at-least 2 decent projects.These could be web/app or even python/c based projects.You should be thorough with each and every project you've mentioned.
Tip 2: The resume should be well-formatted.Do not mention things you aren't confident about.Mention your core subjects as well.Write only what you know!

Final outcome of the interviewSelected

Skills evaluated in this interview

Get interview-ready with Top Deutsche Bank Interview Questions

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

This was coding test. There were two question from DP and arrays respectively. I solved both questions in given time. I got shortlisted for the next round.

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered Anonymously
  • Q2. 

    Consecutive Sum Representation of a Number

    Find the number of ways the given number 'N' can be expressed as the sum of two or more consecutive natural numbers.

    Example:

    Input:
    N = 9
    Output:
    2
    Explan...
  • Ans. Prefix sum

    Use a prefix sum array ‘prefixSum’ (with ‘prefixSum[0] = 0’) whose each index ‘i’ stores the sum of ‘i’ consecutive integers starting from ‘1’. The size of this array will be ‘x’. Here, ‘x + (x-1) <= n’,i.e, when the sum of two consecutive numbers becomes greater than ‘n’. To generate ‘prefixSum’ iterate from index ‘i = 1’ and compute ‘prefixSum[i] = prefixSum[i - 1] + i’. Let, ‘count’ is the number of way...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in MumbaiEligibility criteria7 CGPADeutsche Bank interview preparation:Topics to prepare for the interview - OOPs, Data structure, Algorithms, DBMS, Operating SystemTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 300 question.
Tip 2 : Resume should be of one page, if you are fresher.
Tip 3 : Don't lie on your resume.

Application resume tips for other job seekers

Tip 1 : Keep it short and concise. 
Tip 2 : Mention at least two good projects on your resume and know everything about those projects.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Deutsche Bank Software Developer Intern Interview Questions and Answers

Q1. Longest Consecutive SequenceYou are given an unsorted array/list 'ARR' of 'N' integers. Your task is to return the length of the longest consecutive sequence. The consecutive sequence is in the form ['NUM', 'NUM' + 1, 'NUM' + 2, ..., 'NUM' ... read more
View answer (4)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Jobs at Deutsche Bank

View all

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Sql basics, power bi , tablue, ssis

Interview Preparation Tips

Interview preparation tips for other job seekers - You have to be confident.

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

NCT analyst Interview Questions & Answers

user image Anonymous

posted on 18 Sep 2021

I applied via Referral and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related Bank

Interview Preparation Tips

Interview preparation tips for other job seekers - Just need to be confident while in answering what you know

KYC Analyst Interview Questions & Answers

user image Anonymous

posted on 22 Dec 2021

I applied via Referral and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About the anti money laundering. What is KYC. What do you know about Deutsche Bank. Some other personal questions about the qualifications and work I would do

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, before going through to appear the interview have some specific knowledge of banking sector.

KYC Analyst Interview Questions asked at other Companies

Q1. 7. What is PEP? 8. Are only politicallly exposed person a threat or are there any other threats you can relate ?
View answer (1)

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself?
  • Q2. Past/Previous experience?
  • Q3. What role was in past company?
  • Q4. They'll ask give a situation in that how you'll be able to work.

Top Deutsche Bank Financial Analyst Interview Questions and Answers

Q1. In a marathon, the each athlete is assigned a number, you see 5 of them with the following numbers: 2, 10, 40, 50, 200, 250……can you guess the total number of runners in the race?
View answer (16)

Financial Analyst Interview Questions asked at other Companies

Q1. Suppose you have 10000 US dollars with you, out of which you took a loan of 5000 US Dollars. Now suppose you have purchased two assets of 5000 US Dollars each, one through cash and other through bank loan. How would you show this transactio... read more
View answer (3)

Deutsche Bank Interview FAQs

How many rounds are there in Deutsche Bank interview?
Deutsche Bank interview process usually has 2-3 rounds. The most common rounds in the Deutsche Bank interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Deutsche Bank interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Deutsche Bank. The most common topics and skills that interviewers at Deutsche Bank expect are SQL, Agile, Risk Management, Python and Java.
What are the top questions asked in Deutsche Bank interview?

Some of the top questions asked at the Deutsche Bank interview -

  1. In a marathon, the each athlete is assigned a number, you see 5 of them with th...read more
  2. A 10x10x10 cube is made up of 1x1x1 cubes. Its outer surface is painted red and...read more
  3. 1. Print numbers from 1 to 100 without using any loop ? 2. How do you take out...read more
How long is the Deutsche Bank interview process?

The duration of Deutsche Bank interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Deutsche Bank Interview Process

based on 275 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
IDFC FIRST Bank Interview Questions
4.0
 • 625 Interviews
IndusInd Bank Interview Questions
3.5
 • 591 Interviews
Yes Bank Interview Questions
3.7
 • 414 Interviews
RBL Bank Interview Questions
3.6
 • 169 Interviews
Federal Bank Interview Questions
3.8
 • 122 Interviews
View all

Deutsche Bank Reviews and Ratings

based on 3.3k reviews

3.9/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.6

Salary

4.0

Job security

3.8

Company culture

3.1

Promotions

3.6

Work satisfaction

Explore 3.3k Reviews and Ratings
Java Full Stack Developer

Pune

14-20 Yrs

Not Disclosed

Validations - Principal Audit Analyst

Mumbai

5-10 Yrs

Not Disclosed

Explore more jobs
Associate
4.8k salaries
unlock blur

₹8.8 L/yr - ₹34 L/yr

Senior Analyst
3.9k salaries
unlock blur

₹4 L/yr - ₹16.7 L/yr

Assistant Vice President
3.4k salaries
unlock blur

₹16 L/yr - ₹48.5 L/yr

Analyst
2.1k salaries
unlock blur

₹2 L/yr - ₹11 L/yr

Financial Analyst
1k salaries
unlock blur

₹1.8 L/yr - ₹8.2 L/yr

Explore more salaries
Compare Deutsche Bank with

Barclays

3.8
Compare

JPMorgan Chase & Co.

4.0
Compare

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview