Upload Button Icon Add office photos

Deutsche Bank

Compare button icon Compare button icon Compare

Filter interviews by

Deutsche Bank Interview Questions and Answers for Freshers

Updated 1 Jul 2025
Popular Designations

55 Interview questions

An Analyst was asked
Q. Explain Fiscal Cliff, Euro-Debt Crisis and the Palestine war
Ans. 

Fiscal Cliff is a term used to describe a combination of tax increases and spending cuts. Euro-Debt Crisis refers to the financial crisis faced by some European countries. Palestine war is a conflict between Israel and Palestine.

  • Fiscal Cliff: Combination of tax increases and spending cuts in the US

  • Euro-Debt Crisis: Financial crisis faced by some European countries like Greece, Spain, and Portugal

  • Palestine war: Con...

View all Analyst interview questions
A KYC Analyst was asked 10mo ago
Q. END TO end KYC Process
Ans. 

The end-to-end KYC process involves collecting, verifying, and monitoring customer information to ensure compliance with regulations.

  • Collecting customer information such as identification documents and personal details

  • Verifying the authenticity of the information provided through various checks and screenings

  • Monitoring customer transactions and behavior for any suspicious activities

  • Updating customer records regula...

View all KYC Analyst interview questions
A Java Full Stack Developer was asked
Q. 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, Con...

View all Java Full Stack Developer interview questions
A Java Full Stack Developer was asked
Q. 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.

View all Java Full Stack Developer interview questions
A Financial Analyst was asked
Q. What is debt and equity
Ans. 

Debt is money borrowed by a company or individual that must be repaid with interest. Equity is ownership in a company.

  • Debt is a liability that must be paid back with interest

  • Equity represents ownership in a company

  • Debt holders have priority over equity holders in case of bankruptcy

  • Examples of debt include loans, bonds, and mortgages

  • Examples of equity include stocks and shares

View all Financial Analyst interview questions
An Analyst was asked
Q. What is NIFTY ?
Ans. 

NIFTY is the flagship index of the National Stock Exchange (NSE) of India, comprising of 50 large-cap stocks.

  • NIFTY stands for National Stock Exchange Fifty

  • It is a market capitalization-weighted index

  • It represents the performance of the top 50 companies listed on the NSE

  • It is used as a benchmark for Indian equity market performance

View all Analyst interview questions
A Software Developer Intern was asked
Q. 

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 index
...
Ans. 

Implement a function to process queries on a binary matrix by flipping rows/columns and counting zeros.

  • Create a binary matrix with all zeros initially.

  • Process queries by flipping rows/columns and counting zeros as per query type.

  • Return the count of zeros for type 2 queries.

  • Handle constraints efficiently to optimize the solution.

  • Example: For input M=3, N=3 and queries 1R1, 1R2, 2C1, the output should be 1.

View all Software Developer Intern interview questions
Are these interview questions helpful?
🔥 Asked by recruiter 2 times
A Software Developer Intern was asked
Q. 

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. 

The problem involves finding the minimum number of jumps required to reach the last index of an array, where each element represents the maximum distance that can be jumped from that index.

  • Start from index 0 and keep track of the maximum reachable index at each step.

  • Update the maximum reachable index as you iterate through the array.

  • Increment the jump count when you reach the end of the current reachable range.

  • Con...

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. 

Dijkstra's Shortest Path Problem

Given an undirected graph with ‘V’ vertices (labeled 0, 1, ... , V-1) and ‘E’ edges, where each edge has a weight representing the distance between two connected nodes (X, ...

Ans. 

Dijkstra's algorithm is used to find the shortest path from a source node to all other nodes in a graph with weighted edges.

  • Implement Dijkstra's algorithm to find the shortest path distances from the source node to all other nodes.

  • Use a priority queue to efficiently select the next node with the shortest distance.

  • Update the distances of neighboring nodes based on the current node's distance and edge weights.

  • Handle...

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. Write a SQL query to select all the people who are below the age of 75 from a set of people.
Ans. 

SQL query to select people below age 75

  • Use SELECT statement to retrieve data

  • Use WHERE clause to filter out people above age 75

  • Example: SELECT * FROM people WHERE age < 75

View all Software Developer Intern interview questions

Deutsche Bank Interview Experiences for Freshers

75 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was data structures and algorithm

Round 2 - Technical 

(2 Questions)

  • Q1. What is friend function
  • Q2. Basic definitions of oops
  • Ans. 

    Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects, which can contain data and methods.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the same int...

  • Answered by AI

Skills evaluated in this 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
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<String> names = Arrays.asList("Alice", "Bob", "Charlie"); List<String> 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

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Kubernetes architecture
  • Q2. Basic docker image and kubernetes yaml description
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

25 MCQs mainly on core java, design patterns, synchronization

Round 2 - Technical 

(2 Questions)

  • Q1. Given an assignment to write program on Fibonacci series, String palindrome Threads in Java, Java Streams
  • Q2. Questions about data structures and collection API
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Batch Apex, triggers, process
  • Q2. Asynchronous apex, Synchronous apex

Interview Preparation Tips

Topics to prepare for Deutsche Bank Senior Salesforce Developer interview:
  • Apex
  • lwc
  • Triggers
  • batch apex

Intern Interview Questions & Answers

user image Anonymous

posted on 28 Nov 2024

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

I applied via Newspaper Ad and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Probability test with some questions involved

Round 2 - Technical 

(2 Questions)

  • Q1. What languages do i know
  • Ans. 

    I am fluent in English, Spanish, and French.

    • English

    • Spanish

    • French

  • Answered by AI
  • Q2. How to do bfs
  • Ans. 

    BFS (Breadth-First Search) is a graph traversal algorithm that explores all the neighbor nodes at the present depth prior to moving on to the nodes at the next depth level.

    • Start by visiting the starting node and enqueue it.

    • While the queue is not empty, dequeue a node and visit its neighbors.

    • Enqueue the neighbors of the visited node and mark them as visited to avoid revisiting.

    • Continue this process until all nodes are v...

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

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

(2 Questions)

  • Q1. What is your name?
  • Ans. 

    My name is John Doe.

    • My name is John Doe.

    • I go by the name John.

    • My full name is John Doe.

  • Answered by AI
  • Q2. What are your qualifications?

Interview Preparation Tips

Interview preparation tips for other job seekers - Cool and calm
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. What are your expectations for this job?
  • Ans. 

    I expect to contribute to data accuracy, enhance processes, and support team goals while growing my skills in analysis and compliance.

    • Contribute to data accuracy by ensuring all confirmations are verified and discrepancies are resolved promptly.

    • Enhance processes by identifying areas for improvement, such as streamlining communication with stakeholders.

    • Support team goals by collaborating effectively with colleagues and ...

  • Answered by AI
  • Q2. What do you know about trade?
  • Ans. 

    Trade involves the exchange of goods and services between parties, crucial for economic growth and globalization.

    • Types of trade: Domestic (within a country) and International (between countries).

    • Examples of goods traded: Electronics, agricultural products, and textiles.

    • Services can also be traded, such as consulting and tourism.

    • Trade agreements, like NAFTA or the EU, facilitate international trade.

    • Trade balances (expor...

  • Answered by AI

Graduate Trainee Interview Questions & Answers

user image Kumari Deeksha

posted on 19 Oct 2024

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

I applied via Campus Placement and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

3 coding questions, 1.5 hr

Interview Preparation Tips

Topics to prepare for Deutsche Bank Graduate Trainee interview:
  • DBMS
  • DSA
  • OOPS
  • Computer Networking
  • Operating Systems
  • SQL

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Deutsche Bank?
Ask anonymously on communities.

Deutsche Bank Interview FAQs

How many rounds are there in Deutsche Bank interview for freshers?
Deutsche Bank interview process for freshers usually has 2-3 rounds. The most common rounds in the Deutsche Bank interview process for freshers are Technical, HR and Coding Test.
How to prepare for Deutsche Bank interview for freshers?
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 Investment Banking, KYC, Anti Money Laundering, Banking Operations and AML.
What are the top questions asked in Deutsche Bank interview for freshers?

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

  1. If I give you Rs.5000 per month for a year or give you Rs.50000 at the beginni...read more
  2. Draw the income statement for a carpenter who buys wood at certain price and se...read more
  3. Can some work you did at Microsoft be used in DB (I wasn’t at all expecting t...read more
What are the most common questions asked in Deutsche Bank HR round for freshers?

The most common HR questions asked in Deutsche Bank interview are for freshers -

  1. Why should we hire y...read more
  2. What are your strengths and weakness...read more
  3. What is your family backgrou...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.

Overall Interview Experience Rating

4/5

based on 25 interview experiences

Difficulty level

Easy 10%
Moderate 86%
Hard 5%

Duration

Less than 2 weeks 67%
2-4 weeks 24%
4-6 weeks 10%
View more

Interview Questions from Similar Companies

IDFC FIRST Bank Interview Questions
3.9
 • 768 Interviews
IndusInd Bank Interview Questions
3.5
 • 686 Interviews
Bandhan Bank Interview Questions
3.7
 • 635 Interviews
Yes Bank Interview Questions
3.7
 • 482 Interviews
Barclays Interview Questions
3.8
 • 288 Interviews
View all

Deutsche Bank Reviews and Ratings

based on 3.9k reviews

3.9/5

Rating in categories

3.4

Skill development

4.0

Work-life balance

3.5

Salary

4.0

Job security

3.8

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 3.9k Reviews and Ratings
Ui Developer

Nashik,

Pune

+1

10-15 Yrs

₹ 15-22.5 LPA

Loans IT - Associate - Full Stack Java Developer

Bangalore / Bengaluru

6-11 Yrs

Not Disclosed

Explore more jobs
Associate
5.3k salaries
unlock blur

₹14.8 L/yr - ₹25.8 L/yr

Senior Analyst
4.1k salaries
unlock blur

₹6.2 L/yr - ₹14 L/yr

Assistant Vice President
4k salaries
unlock blur

₹26 L/yr - ₹44.5 L/yr

Analyst
2.2k salaries
unlock blur

₹4.6 L/yr - ₹10.5 L/yr

Vice President
947 salaries
unlock blur

₹45 L/yr - ₹75 L/yr

Explore more salaries
Compare Deutsche Bank with

Barclays

3.7
Compare

JPMorgan Chase & Co.

3.9
Compare

Kotak Mahindra Bank

3.7
Compare

AU Small Finance Bank

4.2
Compare
write
Share an Interview