Upload Button Icon Add office photos

Deutsche Bank

Compare button icon Compare button icon Compare
3.9

based on 3.2k 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 for Experienced

Updated 24 Dec 2024

Top Deutsche Bank Interview Questions and Answers for Experienced

View all 77 questions

Deutsche Bank Interview Experiences for Experienced

Popular Designations

129 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between a HashMap, a ConcurrentHashMap, and a synchronized HashMap?
  • Ans. 

    HashMap is not thread-safe, ConcurrentHashMap allows concurrent access, synchronized HashMap uses explicit synchronization.

    • HashMap is not thread-safe and can lead to ConcurrentModificationException if accessed by multiple threads simultaneously.

    • ConcurrentHashMap allows concurrent access by multiple threads without the need for external synchronization.

    • Synchronized HashMap uses explicit synchronization to make it thread...

  • Answered by AI
  • Q2. What is a lambda expression, and how does it relate to functional interfaces? Could you provide an example?
  • Ans. 

    A lambda expression is a concise way to represent an anonymous function, often used with functional interfaces in Java.

    • Lambda expressions provide a way to pass functionality as an argument to a method.

    • Functional interfaces are interfaces with a single abstract method, which can be implemented using lambda expressions.

    • Example: (x, y) -> x + y is a lambda expression that takes two parameters and returns their sum.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I asked most of the scenario-based questions. The technical questions included: \n1. What's the difference between a HashMap, a ConcurrentHashMap, and a synchronized HashMap? \n2. What is the difference between a Session ID and a JWT? \n3. A coding question: How do you sort the values in a HashMap in ascending order?

Top Deutsche Bank Associate Vice President Interview Questions and Answers

Q1. What is a lambda expression, and how does it relate to functional interfaces? Could you provide an example?
View answer (1)

Associate Vice President Interview Questions asked at other Companies

Q1. Discuss a case study on a preferred topic or use sample problems to explain a difficult concept. First name the topic and then the concept/case study to be illustrated within 5 mins. CBSE Hot questions are preferred.
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response

I was interviewed in Aug 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. What is MATLAB ?
  • Ans. 

    MATLAB is a high-level programming language and interactive environment for numerical computation, visualization, and programming.

    • MATLAB stands for Matrix Laboratory.

    • It is widely used in engineering, science, and economics for data analysis, simulation, and modeling.

    • MATLAB allows for easy matrix manipulation and plotting of functions and data.

    • It supports various toolboxes for specialized tasks like signal processing, i...

  • Answered by AI
  • Q2. How to use GUI ?
  • Ans. 

    GUI can be used to interact with software applications through graphical elements like buttons, menus, and icons.

    • GUI stands for Graphical User Interface

    • Users can interact with software applications by clicking on buttons, selecting from menus, and dragging icons

    • GUIs make it easier for users to navigate and interact with software compared to text-based interfaces

    • Examples of GUIs include Windows operating system, web bro

  • Answered by AI
  • Q3. How you handle criticism or negative comments ?
  • Ans. 

    I view criticism as an opportunity for growth and improvement.

    • I listen carefully to the feedback and try to understand the perspective of the person giving it.

    • I reflect on the criticism to see if there are valid points that I can learn from.

    • I use criticism as a motivation to work harder and improve my skills.

    • I seek constructive criticism to help me grow professionally.

    • I remain open-minded and avoid taking criticism per

  • Answered by AI

Skills evaluated in this interview

Reference Data Analyst Interview Questions asked at other Companies

Q1. Corporate actions and their effects on stock price?
View answer (1)

Risk Analyst Interview Questions & Answers

user image Anonymous

posted on 29 Aug 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Cash Flow Analysis
  • Q2. Financial statement analysis

Risk Analyst Interview Questions asked at other Companies

Q1. How will you determine the factors can be considered as risk while insuring a bike?
View answer (1)
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Dsa questions related to palindrome

Lead Java Developer Interview Questions asked at other Companies

Q1. Can you create an application without the help of google
View answer (1)

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)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 5 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a docker file and explain each instructions?
  • Ans. 

    A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Use the FROM instruction to specify the base image

    • Use the RUN instruction to execute commands in the container

    • Use the COPY instruction to copy files from the host to the container

    • Use the CMD instruction to specify the command to run when the container starts

  • Answered by AI
  • Q2. Write yaml file for deployment kind
  • Ans. 

    Write a yaml file for deployment kind

    • Use 'kind: Deployment' to specify the type of deployment

    • Include metadata like name and labels

    • Define spec with containers, image, ports, etc.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Shell script to extract alphabet from alphanumeric word
  • Ans. 

    Use a shell script to extract alphabets from an alphanumeric word.

    • Use the tr command to delete all non-alphabetic characters from the word.

    • Store the result in an array of strings for multiple words.

    • Example: word='abc123'; result=$(echo $word | tr -d '0-9'); echo $result

  • Answered by AI
  • Q2. Networking in Kubernetes cluster
  • Ans. 

    Networking in Kubernetes cluster involves communication between pods and services.

    • Kubernetes uses a flat networking model where each pod gets its own IP address.

    • Pods can communicate with each other using their IP addresses.

    • Services act as a stable endpoint for pods, allowing them to communicate with each other.

    • Kubernetes networking plugins like Calico, Flannel, and Cilium help manage networking within the cluster.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Entire cicd process... Terraform modules... monitoring tools setup..
  • Q2. Security in Kubernetes cluster
  • Ans. 

    Security in Kubernetes cluster involves implementing RBAC, network policies, pod security policies, and regular security audits.

    • Implement Role-Based Access Control (RBAC) to control access to resources within the cluster

    • Use network policies to restrict traffic between pods and namespaces

    • Enforce Pod Security Policies to define security settings for pods

    • Regularly conduct security audits and vulnerability assessments to i

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Fitment round.. technical managerial round...blue green deployment use case?
  • Q2. Why u changed jobs at each organisation
Round 5 - HR 

(2 Questions)

  • Q1. Salary negotiation..
  • Q2. Why DB over other offers
  • Ans. 

    DB offers a challenging work environment, opportunities for growth, and a strong reputation in the industry.

    • DB offers a challenging work environment that will allow me to further develop my skills and knowledge.

    • DB provides opportunities for growth and advancement within the company, which is important for my career development.

    • DB has a strong reputation in the industry for its innovative solutions and commitment to exc...

  • Answered by AI

Skills evaluated in this interview

Assistant Vice President Interview Questions asked at other Companies

Q1. What measurements previous employer taken after infamous Cobra Post operation?
View answer (1)

Get interview-ready with Top Deutsche Bank Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Python String manipulation, lists vs dictionary, spark architecture etc

Top Deutsche Bank Associate Vice President Interview Questions and Answers

Q1. What is a lambda expression, and how does it relate to functional interfaces? Could you provide an example?
View answer (1)

Associate Vice President Interview Questions asked at other Companies

Q1. Discuss a case study on a preferred topic or use sample problems to explain a difficult concept. First name the topic and then the concept/case study to be illustrated within 5 mins. CBSE Hot questions are preferred.
View answer (1)

Analyst Interview Questions & Answers

user image Anonymous

posted on 18 Apr 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Details of past projects? Models worked on, comparison of models
  • Q2. Why logistic regression over random forests?
  • Ans. 

    Logistic regression is preferred for interpretability and simplicity compared to random forests.

    • Logistic regression is a linear model that is easier to interpret and implement compared to the complex ensemble method of random forests.

    • Logistic regression is better suited for binary classification problems where the relationship between the independent variables and the outcome is linear.

    • Random forests are more computati...

  • Answered by AI
  • Q3. Explain classification models and how they work
  • Ans. 

    Classification models are used to predict the category or class of a new observation based on past data.

    • Classification models assign new data points to a specific category or class based on patterns in the training data.

    • Common classification algorithms include logistic regression, decision trees, random forests, and support vector machines.

    • These models are evaluated based on metrics like accuracy, precision, recall, an...

  • Answered by AI
  • Q4. How do you assess model performance?
  • Ans. 

    Model performance can be assessed using various metrics such as accuracy, precision, recall, F1 score, ROC curve, and confusion matrix.

    • Evaluate accuracy to measure overall correctness of the model's predictions.

    • Use precision to assess the proportion of true positive predictions among all positive predictions.

    • Consider recall to evaluate the proportion of true positive predictions among all actual positives.

    • Calculate F1 ...

  • Answered by AI
  • Q5. Assumptions of Linear Regression
  • Ans. 

    Assumptions of Linear Regression include linearity, independence, homoscedasticity, and normality.

    • Linearity: The relationship between the independent and dependent variables is linear.

    • Independence: The residuals are independent of each other.

    • Homoscedasticity: The variance of the residuals is constant across all levels of the independent variables.

    • Normality: The residuals are normally distributed.

    • Example: If we are pred...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare knowledge of models and selection and conceptual understanding

Skills evaluated in this interview

Top Deutsche Bank Analyst Interview Questions and Answers

Q1. A 10x10x10 cube is made up of 1x1x1 cubes. Its outer surface is painted red and then big cube is dismantled into smaller cubes. How many cubes are there with none of their faces painted red?
View answer (6)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)

Software Development Engineer interview

user image Learn Java in Hindi/Urdu

posted on 11 Jan 2022

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How to stop and start JVMs from backend in a WAS. What is the best practice to be followed for the restart of JVMs?
  • Ans. 

    To stop and start JVMs in a WAS backend, use administrative console or scripting. Best practice is to perform rolling restarts.

    • Use administrative console to stop and start JVMs individually or in a cluster

    • Use scripting (such as wsadmin) for automation and bulk operations

    • Perform rolling restarts to minimize downtime and ensure high availability

    • Monitor JVM health and performance before and after restarts

  • Answered by AI
  • Q2. Create a script which will delete the files older than 7 days in a linux vm.
  • Ans. 

    Script to delete files older than 7 days in a Linux VM

    • Use the find command to locate files older than 7 days

    • Pipe the output of find to the rm command to delete the files

    • Make sure to test the script in a safe environment before running it on important files

  • Answered by AI

Skills evaluated in this interview

Top Deutsche Bank Senior Analyst Interview Questions and Answers

Q1. What is Collateral, type of collateral, Margin call
View answer (1)

Senior Analyst Interview Questions asked at other Companies

Q1. Explain 3 statement financial model Calculating discount rate Could you walk me through the DCF model? Other valuation methods. What PE is ideal? What is the other matrix to value the company? Difference between IRR and CAGR. What is Bond Y... read more
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Fund accounting
  • Q2. What is mutual fund
  • Ans. 

    A mutual fund is a type of investment vehicle consisting of a pool of funds collected from many investors for the purpose of investing in securities such as stocks, bonds, money market instruments, and other assets.

    • Mutual funds are managed by professional fund managers who allocate the fund's assets and attempt to produce capital gains or income for the fund's investors.

    • Investors in a mutual fund own shares of the fund...

  • Answered by AI
  • Q3. Corporate action

Fund Accounting Analyst Interview Questions asked at other Companies

Q1. What are the different fee applied to mutual funds?
View answer (1)

Deutsche Bank Interview FAQs

How many rounds are there in Deutsche Bank interview for experienced candidates?
Deutsche Bank interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Deutsche Bank interview process for experienced candidates are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Deutsche Bank interview for experienced candidates?
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, Python, Risk Management and Oracle.
What are the top questions asked in Deutsche Bank interview for experienced candidates?

Some of the top questions asked at the Deutsche Bank interview for experienced candidates -

  1. What is a Brownian motion? Properties of Brownian moti...read more
  2. What is a Martingale? What are Markov Processes? Is Martingale a Markov Process...read more
  3. You have a decent CPI and are from Maths background so why not go for...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 for Experienced

based on 55 interviews in last 1 year

Interview experience

4
  
Good
View more

People are getting interviews through

based on 79 Deutsche Bank interviews
Job Portal
Referral
Company Website
Campus Placement
Recruitment Consultant
38%
16%
10%
6%
5%
25% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

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.4k Interviews
IDFC FIRST Bank Interview Questions
4.0
 • 608 Interviews
IndusInd Bank Interview Questions
3.6
 • 575 Interviews
Yes Bank Interview Questions
3.8
 • 408 Interviews
RBL Bank Interview Questions
3.7
 • 164 Interviews
Federal Bank Interview Questions
3.8
 • 121 Interviews
View all

Deutsche Bank Reviews and Ratings

based on 3.2k reviews

3.9/5

Rating in categories

3.6

Skill development

4.0

Work-Life balance

3.6

Salary & Benefits

4.0

Job Security

3.9

Company culture

3.1

Promotions/Appraisal

3.6

Work Satisfaction

Explore 3.2k Reviews and Ratings
Associate
4.7k salaries
unlock blur

₹8.7 L/yr - ₹34 L/yr

Senior Analyst
3.9k salaries
unlock blur

₹3.8 L/yr - ₹16.5 L/yr

Assistant Vice President
3.4k salaries
unlock blur

₹15.6 L/yr - ₹48.5 L/yr

Analyst
2.1k salaries
unlock blur

₹2 L/yr - ₹10.5 L/yr

Financial Analyst
1.1k salaries
unlock blur

₹1.6 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Deutsche Bank with

Barclays

3.9
Compare

JPMorgan Chase & Co.

4.1
Compare

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview