Upload Button Icon Add office photos

Deutsche Bank

Compare button icon Compare button icon Compare

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 1 Mar 2025

Top Deutsche Bank Interview Questions and Answers

View all 304 questions

Deutsche Bank Interview Experiences

Popular Designations

362 interviews found

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

I applied via Job Portal and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Test about 50 questions, 25 technical 25 general logic

Round 2 - Technical 

(6 Questions)

  • Q1. What is semaphores
  • Ans. 

    Semaphores are a synchronization tool used in operating systems to control access to shared resources by multiple processes.

    • Semaphores can be used to prevent race conditions in concurrent programming

    • They can be either binary (0 or 1) or counting (integer value)

    • Operations on semaphores include wait (P) and signal (V)

    • Example: Using semaphores to control access to a shared memory buffer

  • Answered by AI
  • Q2. Write the code to find prime nos using stream api
  • Ans. 

    Using stream API to find prime numbers in Java

    • Use IntStream to generate a stream of numbers

    • Filter out non-prime numbers using a custom method

    • Check if a number is prime by dividing it by all numbers less than itself

  • Answered by AI
  • Q3. Design Patterns in microservices
  • Ans. 

    Design patterns in microservices help in structuring and organizing code for scalability and maintainability.

    • Use patterns like Service Registry, Circuit Breaker, and API Gateway for communication between microservices.

    • Implement patterns like Saga, CQRS, and Event Sourcing for managing data consistency and scalability.

    • Consider patterns like Bulkhead, Retry, and Timeout for fault tolerance and resilience in microservices

  • Answered by AI
  • Q4. How to improve performance of website, product
  • Ans. 

    To improve website or product performance, focus on optimizing speed, user experience, and SEO.

    • Optimize website loading speed by reducing image sizes and minimizing HTTP requests

    • Improve user experience by simplifying navigation and enhancing mobile responsiveness

    • Enhance SEO by creating high-quality content, using relevant keywords, and obtaining backlinks

  • Answered by AI
  • Q5. Evacuation strategies
  • Q6. Advantages of microservices and limitations of rest
  • Ans. 

    Microservices offer scalability and flexibility, while REST has limitations in terms of performance and complexity.

    • Microservices allow for independent development and deployment of services, leading to better scalability.

    • Microservices promote flexibility and agility in software development by breaking down applications into smaller, manageable components.

    • REST APIs can be limited in terms of performance due to multiple ...

  • Answered by AI

Skills evaluated in this interview

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What are Corporate Actions?
  • Ans. 

    Corporate Actions are events initiated by a publicly traded company that can affect the securities issued by the company.

    • Corporate Actions include events such as stock splits, dividends, mergers, acquisitions, spin-offs, and rights issues.

    • These events can impact the value of securities held by investors and require adjustments to be made in fund accounting.

    • Fund accountants need to accurately record and track Corporate ...

  • Answered by AI
  • Q2. How is NAV calculated? What is NAV validation?
  • Ans. 

    NAV is calculated by subtracting liabilities from assets and dividing by the number of outstanding shares. NAV validation ensures accuracy of the calculated NAV.

    • NAV is calculated by taking the market value of assets, subtracting liabilities, and dividing by the number of outstanding shares.

    • For example, if a fund has $1,000,000 in assets, $100,000 in liabilities, and 100,000 outstanding shares, the NAV would be ($1,000,...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the material they provide, research well about the role and process, and finally read your JD thoroughly

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 Questions and Answers for Freshers
illustration image

Senior Associate Interview Questions & Answers

user image rajesh kumar

posted on 21 Jan 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Question about big data and big query
  • Q2. Question about pyspark
Round 2 - One-on-one 

(1 Question)

  • Q1. Salary expectation & why you want to join db ?
  • Ans. 

    I am looking for a competitive salary that reflects my experience and skills. I want to join db because of its reputation for innovation and growth opportunities.

    • I am seeking a salary that aligns with my level of experience and expertise in the industry.

    • I believe db offers a dynamic and innovative work environment that will allow me to grow and develop professionally.

    • I am attracted to db's reputation as a leader in the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask them how much they can offer before giving an interview

Senior Associate Interview Questions asked at other Companies

Q1. On an average, how many invoices can you process in a day?
View answer (10)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Java 8 Features
  • Q2. Default Interface
  • Q3. Write code for Builder/Factory Pattern, basically anything other than Singleton
  • Ans. 

    Builder/Factory Pattern is used to create objects with complex initialization logic.

    • Builder Pattern separates the construction of a complex object from its representation.

    • Factory Pattern creates objects without specifying the exact class of object that will be created.

    • Builder Pattern is often used to create immutable objects with many optional parameters.

    • Factory Pattern is used when there is a need to create multiple i...

  • Answered by AI
  • Q4. Why is Redux used in React
  • Ans. 

    Redux is used in React to manage the application state in a predictable way.

    • Centralized state management for React applications

    • Predictable state changes with actions and reducers

    • Easier debugging and testing of state changes

    • Facilitates communication between components

  • Answered by AI
  • Q5. Second Highest Salary from Employee Table
  • Q6. Filter a List using Streams
  • Ans. 

    Filter a List using Streams in Java

    • Use the filter() method to apply a predicate to each element in the stream

    • Use collect() method to convert the stream back to a List

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); List filteredNames = names.stream().filter(name -> name.startsWith("A")).collect(Collectors.toList());

  • Answered by AI
Round 2 - Technical 

(7 Questions)

  • Q1. Write snippet for creating an Entity Class.
  • Ans. 

    Creating an Entity Class in Java

    • Define class with @Entity annotation

    • Add @Id annotation for primary key

    • Include fields with appropriate data types

  • Answered by AI
  • Q2. Different Types of Autowiring
  • Ans. 

    There are three types of autowiring in Spring: byType, byName, and constructor.

    • byType: Spring looks for a bean of the same type and injects it.

    • byName: Spring looks for a bean with the same name and injects it.

    • constructor: Spring looks for a constructor and injects the arguments.

  • Answered by AI
  • Q3. Lazy vs Eager Fetch
  • Ans. 

    Lazy fetch loads data only when needed, while eager fetch loads all related data upfront.

    • Lazy fetch is more efficient for performance as it only loads data when required.

    • Eager fetch can lead to performance issues by loading unnecessary data upfront.

    • Lazy fetch is the default behavior in JPA, while eager fetch needs to be explicitly specified.

    • Example: Lazy fetch can be used for loading a list of items in a shopping cart ...

  • Answered by AI
  • Q4. Transaction Management in Hibernate
  • Ans. 

    Transaction management in Hibernate ensures ACID properties for database operations.

    • Hibernate provides built-in transaction management support through Session interface.

    • Transactions can be managed programmatically using beginTransaction(), commit(), and rollback() methods.

    • Hibernate also supports declarative transaction management using annotations like @Transactional.

    • Transactions in Hibernate ensure Atomicity, Consiste...

  • Answered by AI
  • Q5. Attached Entity vs Detached Entity
  • Ans. 

    Attached entities are actively managed by the persistence context, while detached entities are no longer actively managed.

    • Attached entities are being managed by the persistence context and any changes made to them will be automatically synchronized with the database.

    • Detached entities are not being managed by the persistence context and changes made to them will not be automatically synchronized with the database.

    • Entiti...

  • Answered by AI
  • Q6. Write Snippet to create two beans
  • Ans. 

    Creating two beans in Java using Spring framework

    • Use @Component annotation to define a bean

    • Specify the bean name using @Component("beanName")

    • Use @Autowired annotation to inject one bean into another

  • Answered by AI
  • Q7. Sort an Employee HashMap
  • Ans. 

    Sort an Employee HashMap based on keys or values

    • Use TreeMap to automatically sort by keys

    • Use Comparator to sort by values

    • Convert HashMap to List and then sort

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Deutsche Bank Java Full Stack Developer interview:
  • Spring Framework
Interview preparation tips for other job seekers - First Round was conducted by HirePro

Skills evaluated in this interview

Top Deutsche Bank Java Full Stack Developer Interview Questions and Answers

Q1. Write code for Builder/Factory Pattern, basically anything other than Singleton
View answer (1)

Java Full Stack Developer Interview Questions asked at other Companies

Q1. Coding question - 1. Create a immutable class of orders. What happens when two objects are created out of it. 2.Using the immutable orders create a set of orders and how will you sort these out. 3.Given a List of list of string of integers ... read more
View answer (1)

Deutsche Bank interview questions for popular designations

 Analyst

 (61)

 Associate

 (35)

 Senior Analyst

 (23)

 Financial Analyst

 (13)

 Associate Vice President

 (10)

 Assistant Vice President

 (8)

 Software Developer Intern

 (8)

 KYC Analyst

 (7)

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)

Get interview-ready with Top Deutsche Bank Interview Questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. How many articles are there in UCP600
  • Ans. 

    There are 39 articles in UCP600.

    • UCP600 stands for Uniform Customs and Practice for Documentary Credits, 600 edition

    • It consists of 39 articles that outline the rules and guidelines for international trade transactions

    • Each article covers specific aspects such as definitions, obligations, examination of documents, etc.

  • Answered by AI
  • Q2. Which swift message is used to send bank to bank payment
  • Ans. 

    MT103 is the swift message used to send bank to bank payment.

    • MT103 is a standard SWIFT payment message used for cross-border payments.

    • It contains all the payment details such as amount, currency, sender, receiver, etc.

    • MT103 is widely used for bank-to-bank transfers in the international financial system.

  • Answered by AI

Trade Analyst Interview Questions asked at other Companies

Q1. What is option chain analysis how do you choose strick prices and how you calculate all greeks to know options premium.
View answer (2)

Jobs at Deutsche Bank

View all
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

For this senior position, given paper pen to complete code and write your complete program on paper. Time given was enough, but expectation was to have a complete program in paper with with all validations.

Round 2 - Technical 

(2 Questions)

  • Q1. It was mainly discussion about coding round.
  • Q2. Tried to check on technologies you know, Spring boot, Kafka and OAuth.

Vp and Technology Manager Interview Questions asked at other Companies

Q1. how will you onboard stakeholders for cloud migration
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a program to read a data from excel
  • Ans. 

    Program to read data from Excel

    • Use a library like Apache POI or Openpyxl to read Excel files

    • Identify the sheet and cell from which data needs to be read

    • Handle exceptions like file not found or incorrect cell format

  • Answered by AI
  • Q2. Write a program to handle runtime exception
  • Ans. 

    Program to handle runtime exception

    • Use try-catch blocks to handle exceptions

    • Catch specific exceptions to handle them differently

    • Use finally block to execute code regardless of exception

    • Throw custom exceptions when needed

  • Answered by AI

Skills evaluated in this interview

Senior Automation Test Engineer Interview Questions asked at other Companies

Q1. (1) write a list comprehension to print a list from 1 to 10 (2) write a program to check if a given positive integer is a power of two (3) create a fibonacci series of 100 using recursive function (4) write a program to find missing numbers... read more
View answer (2)

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)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Aug 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Sql queries for join
Round 2 - Technical 

(1 Question)

  • Q1. Write xpath for pattern match
  • Ans. 

    XPath for pattern match is used to locate elements based on a specific pattern.

    • Use 'contains()' function to match a partial text within an element

    • Use 'starts-with()' function to match the beginning of a text within an element

    • Use 'ends-with()' function to match the end of a text within an element

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

JOBS

Deutsche Bank

No Jobs

SALARIES

Apco Infratech

DESIGNATION

SALARIES

Apco Infratech

SALARIES

Apco Infratech

SALARIES

Deutsche Bank

SALARIES

Apco Infratech

SALARIES

Browse salaries

No Salaries

LIST OF COMPANIES

Apco Infratech

Overview

Tell us how to improve this page.

Deutsche Bank Interview Process

based on 285 interviews

Interview experience

4.1
  
Good
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

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
3.9
 • 642 Interviews
IndusInd Bank Interview Questions
3.5
 • 603 Interviews
Yes Bank Interview Questions
3.7
 • 429 Interviews
RBL Bank Interview Questions
3.6
 • 173 Interviews
Federal Bank Interview Questions
3.9
 • 104 Interviews
View all

Deutsche Bank Reviews and Ratings

based on 3.4k 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.0

Promotions

3.5

Work satisfaction

Explore 3.4k Reviews and Ratings
Low-Code transformation solution delivery lead, AVP

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Sales Manager

Pune,

Bangalore / Bengaluru

+1

2-7 Yrs

Not Disclosed

German Language Expert

Mumbai

2-7 Yrs

₹ 5-15 LPA

Explore more jobs
Associate
4.8k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Analyst
3.9k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Assistant Vice President
3.4k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Analyst
2.1k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Financial Analyst
1k salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 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