Upload Button Icon Add office photos

Deutsche Bank

Compare button icon Compare button icon Compare

Filter interviews by

Deutsche Bank Interview Questions and Answers

Updated 1 Jul 2025
Popular Designations

235 Interview questions

An Associate was asked 1w ago
Q. What is the difference between CDD and EDD?
Ans. 

CDD (Customer Due Diligence) is basic risk assessment, while EDD (Enhanced Due Diligence) is for higher-risk customers.

  • CDD is a standard process for verifying customer identity and assessing risk.

  • EDD involves more detailed investigation for high-risk customers, such as PEPs (Politically Exposed Persons).

  • For example, CDD may require basic ID verification, while EDD might involve source of funds checks.

  • CDD is typica...

View all Associate interview questions
An Associate was asked 1mo ago
Q. What is your understanding of process knowledge?
Ans. 

Process knowledge refers to understanding the steps, tools, and techniques involved in a specific workflow or operation.

  • Involves understanding the sequence of tasks in a process, such as in manufacturing where assembly line steps are crucial.

  • Includes knowledge of tools and technologies used, like software in a data analysis process.

  • Encompasses best practices and standards, such as ISO certifications in quality man...

View all Associate interview questions
A KYC Analyst was asked 1mo ago
Q. What is KYC?
Ans. 

KYC, or Know Your Customer, is a process used by businesses to verify the identity of their clients.

  • KYC helps prevent fraud and money laundering by ensuring customers are who they claim to be.

  • It involves collecting personal information such as name, address, and identification documents.

  • For example, banks require KYC to open a new account, asking for a government-issued ID and proof of address.

  • KYC regulations vary...

View all KYC Analyst interview questions
An Associate was asked 2mo ago
Q. What are the different divisions in investment banking?
Ans. 

Investment banking has various divisions, each specializing in different financial services and client needs.

  • Mergers and Acquisitions (M&A): This division advises companies on mergers, acquisitions, and divestitures, helping them navigate complex transactions.

  • Capital Markets: Focuses on raising capital for clients through equity and debt offerings, including IPOs and bond issuances.

  • Sales and Trading: Involves ...

View all Associate interview questions
An Associate was asked 2mo ago
Q. Design a file explorer application.
Ans. 

Design a file explorer application with features like navigation, file operations, and search functionality.

  • Implement a tree structure to represent directories and files.

  • Use a graphical user interface (GUI) for user interaction, e.g., Java Swing or React.

  • Include features like 'Create', 'Delete', 'Rename', and 'Move' for files and folders.

  • Implement a search functionality to find files by name or type.

  • Consider addin...

View all Associate interview questions
An Analyst was asked 3mo ago
Q. What are KYC red flags?
Ans. 

KYC red flags are indicators of potential risks in customer identification and verification processes.

  • Inconsistent information: A customer provides different addresses on various documents.

  • Unusual transaction patterns: A sudden spike in transaction volume that deviates from a customer's normal behavior.

  • High-risk jurisdictions: A customer is from a country known for money laundering or terrorist financing.

  • Lack of t...

View all Analyst interview questions
An Associate was asked 4mo ago
Q. What type of improvement project are you referring to, and what are its goals?
Ans. 

The improvement project I am referring to is a process optimization initiative aimed at reducing production downtime.

  • Identifying bottlenecks in the production process

  • Implementing new scheduling techniques

  • Training staff on efficient maintenance practices

View all Associate interview questions
Are these interview questions helpful?
A Market Risk Analyst was asked 5mo ago
Q. What are the option greeks?
Ans. 

Option greeks are measures used to assess the sensitivity of an option's price to changes in various factors.

  • Option greeks include Delta, Gamma, Theta, Vega, and Rho.

  • Delta measures the change in option price for a $1 change in the underlying asset price.

  • Gamma measures the rate of change of Delta.

  • Theta measures the change in option price with the passage of time.

  • Vega measures the change in option price for a 1% cha...

View all Market Risk Analyst interview questions
An Associate Vice President was asked 6mo ago
Q. 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...

View all Associate Vice President interview questions
An Associate Vice President was asked 6mo ago
Q. 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 t...

View all Associate Vice President interview questions

Deutsche Bank Interview Experiences

390 interviews found

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

Software Engineer Interview Questions & Answers

user image Aishwarya Bhosale

posted on 4 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 coding que easy,med and hard

Round 2 - Technical 

(2 Questions)

  • Q1. Os related que What is kernel , OS types ,what happens after booting computr ,etc
  • Q2. Creat a array and print all elements , which database used for pdf storing sql or nosql
Round 3 - Technical 

(2 Questions)

  • Q1. OOps related que abstraction , inheritance , code it
  • Q2. Middel element of linked list
Round 4 - HR 

(2 Questions)

  • Q1. What challenges u faced in engineering?
  • Ans. 

    I faced various challenges in engineering, including technical hurdles, team dynamics, and project management issues.

    • Technical challenges: Encountered complex algorithms that required extensive research and testing, such as optimizing a sorting algorithm for large datasets.

    • Team dynamics: Navigated conflicts within the team regarding design decisions, which required mediation and compromise to reach a consensus.

    • Project ...

  • Answered by AI
  • Q2. Situational based questions
Round 5 - HR 

(2 Questions)

  • Q1. Why u choose to work deustch bank ?
  • Ans. 

    I chose Deutsche Bank for its innovative technology, global reach, and commitment to professional growth in the finance sector.

    • Deutsche Bank is at the forefront of financial technology, allowing me to work on cutting-edge projects.

    • The bank's global presence offers opportunities to collaborate with diverse teams across different markets.

    • I admire Deutsche Bank's commitment to sustainability and responsible banking, align...

  • Answered by AI
  • Q2. Project related quw

Skills evaluated in this interview

Analyst Interview Questions & Answers

user image Anonymous

posted on 9 Nov 2024

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

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

Round 1 - Technical 

(9 Questions)

  • Q1. What are diiferent types of securities?
  • Ans. 

    Different types of securities include stocks, bonds, options, and mutual funds.

    • Stocks represent ownership in a company

    • Bonds are debt securities issued by governments or corporations

    • Options give the holder the right to buy or sell an asset at a specified price

    • Mutual funds pool money from multiple investors to invest in a diversified portfolio

    • Other types include ETFs, futures, and derivatives

  • Answered by AI
  • Q2. What is Capital markets?
  • Ans. 

    Capital markets are financial markets where long-term debt or equity-backed securities are bought and sold.

    • Capital markets facilitate the buying and selling of long-term financial instruments such as stocks and bonds.

    • They provide a platform for companies and governments to raise funds for various projects and initiatives.

    • Investors can trade securities in the capital markets to earn returns on their investments.

    • Examples...

  • Answered by AI
  • Q3. What are Corporate actions?
  • Ans. 

    Corporate actions are events initiated by a public company that can affect its stock price or ownership structure.

    • Corporate actions include dividends, stock splits, mergers, acquisitions, spin-offs, and rights issues.

    • These actions can impact shareholders by changing the value of their investments or the number of shares they own.

    • Investors need to stay informed about corporate actions to make informed decisions about th...

  • Answered by AI
  • Q4. If bonus declared by company then its effect on company's balance sheet (basically journal)?
  • Ans. 

    Bonus declaration affects liabilities and retained earnings on the balance sheet.

    • When a bonus is declared, it creates a liability for the company, recorded as 'Bonus Payable'.

    • The journal entry would be: Debit 'Retained Earnings' and Credit 'Bonus Payable'.

    • For example, if a company declares a $10,000 bonus, it reduces retained earnings by $10,000.

    • Upon payment of the bonus, the company will debit 'Bonus Payable' and cred...

  • Answered by AI
  • Q5. If bond fv 100 issued at discount at 98 and giving fixed return @ 10%, then what is actual rate of return is it more or less than 10% and method is used for its calculation what it is called?
  • Ans. 

    The actual rate of return is more than 10% due to the bond being issued at a discount. The method used for its calculation is Yield to Maturity (YTM).

    • Bond issued at discount means the actual rate of return is higher than the fixed rate.

    • Yield to Maturity (YTM) is used to calculate the actual rate of return on a bond.

    • YTM takes into account the bond's current market price, par value, coupon payments, and time to maturity.

  • Answered by AI
  • Q6. If company declared dividend but not paid, then its effect on balance sheet of holder of shares?
  • Ans. 

    If a company declares a dividend but does not pay it, the balance sheet of the shareholder will show an increase in their retained earnings and a corresponding decrease in their cash or assets.

    • The shareholder's equity will increase by the amount of the declared dividend.

    • The company's liabilities will also increase by the same amount until the dividend is paid.

    • The shareholder will see an increase in their retained earni...

  • Answered by AI
  • Q7. Mutual fund boughts shares, its journal on trade date and settlement date?
  • Ans. 

    Mutual fund buys shares on trade date and settles on settlement date.

    • Mutual fund purchases shares on the trade date, which is the date the transaction is executed.

    • Settlement date is the date on which the mutual fund actually pays for the shares and receives ownership.

    • The journal entry on the trade date would debit the investment account and credit the cash account.

    • The journal entry on the settlement date would reverse ...

  • Answered by AI
  • Q8. Types of Investment opportunities?
  • Ans. 

    Investment opportunities include stocks, bonds, real estate, commodities, and startups.

    • Stocks - buying shares of a company

    • Bonds - lending money to a corporation or government

    • Real estate - purchasing property for rental income or appreciation

    • Commodities - investing in physical goods like gold or oil

    • Startups - funding early-stage companies in exchange for equity

  • Answered by AI
  • Q9. What is derivatives and different types?
  • Ans. 

    Derivatives are financial instruments whose value is derived from an underlying asset or group of assets.

    • Types of derivatives include futures, options, swaps, and forwards.

    • Futures contracts obligate the buyer to purchase an asset at a specific price on a future date.

    • Options give the buyer the right, but not the obligation, to buy or sell an asset at a predetermined price within a specified timeframe.

    • Swaps involve the e...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in giving answers.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. About the process
  • Q2. About your knowledge about products
  • Q3. About your behavior
  • Q4. Priority in career
  • Ans. 

    My priority in my career is continuous learning and growth, followed by making a positive impact in the organization.

    • Continuous learning through training, certifications, and staying updated with industry trends

    • Seeking opportunities for growth and advancement within the organization

    • Contributing positively to the organization's goals and objectives

    • Balancing personal and professional development to achieve long-term succ...

  • Answered by AI
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?
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Union vs unionByName, RDD vs Dataframe, spark internals, jobs, stages, tasks, catalyst optmizer. The interviewer panel were not very clear on asking questions. Even after asking to reframe they were not ab...
  • Q2. Schema evolution program in scala
  • Ans. 

    Schema evolution in Scala allows for changes in data structure without breaking compatibility with existing data.

    • Use Avro or Parquet formats for schema evolution in big data applications.

    • Define a base schema and use optional fields for new data attributes.

    • Example: Adding a new field 'age' to a user schema without affecting existing records.

    • Leverage libraries like Apache Spark for handling schema evolution in data proce...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Array questions were asked of medium level

Round 2 - Coding Test 

Questions on linkedlist, trees, graphs were asked

Round 3 - Technical 

(2 Questions)

  • Q1. Projects based question
  • Q2. Why join us like hr questions
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Na..... Don't want to share questions
  • Q2. Na., Don't want to share questions
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
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Basics about the jobs and JD
Round 2 - Technical 

(1 Question)

  • Q1. Interview with Director
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(10 Questions)

  • Q1. How will you increase performance of cobol program when its using number of cursors?
  • Ans. 

    To increase performance of a COBOL program using multiple cursors, consider optimizing the SQL queries, reducing the number of cursors, and using efficient data structures.

    • Optimize SQL queries to retrieve only necessary data

    • Reduce the number of cursors by combining multiple queries into one

    • Use efficient data structures like arrays or tables to store and manipulate data

    • Avoid unnecessary looping and processing within cur...

  • Answered by AI
  • Q2. How will you resolve division by zero error Socb
  • Ans. 

    To resolve division by zero error, check for zero before performing division operation.

    • Check if the denominator is zero before performing division operation

    • Handle the error by displaying a message or returning a default value

    • Use conditional statements or try-catch blocks to prevent division by zero

  • Answered by AI
  • Q3. How will you abend the program? by moving error code to Return code
  • Ans. 

    Abend the program by moving error code to Return code

    • To abend the program, set the return code to a non-zero value indicating an error

    • This can be done using a conditional statement to check for errors and then setting the return code accordingly

    • For example, in COBOL, you can use the ACCEPT statement to move the error code to the return code

  • Answered by AI
  • Q4. Inner Join Outer Join Left Join , String ,Unstring , Inspect all questions
  • Q5. How will you check if file is empty ?
  • Ans. 

    To check if a file is empty, you can use file size or read the file and check for any content.

    • Check the file size using system functions like stat() or file length property

    • Read the file and check if there is any content present

    • Use file handling functions to determine if the file is empty

  • Answered by AI
  • Q6. How will you read your file in different record structure ?
  • Ans. 

    To read a file with different record structures, use a combination of file parsing techniques and data manipulation.

    • Identify the record structure of each section in the file

    • Use conditional logic to parse each record based on its structure

    • Implement error handling for unexpected record structures

    • Utilize tools like regular expressions or custom parsing functions

    • Consider using libraries or frameworks that support flexible ...

  • Answered by AI
  • Q7. Is SQLCA EXEC SQL is mandatory ?
  • Ans. 

    No, SQLCA EXEC SQL is not mandatory for Mainframe Developer.

    • SQLCA EXEC SQL is not mandatory but can be used for error handling and status checking in COBOL programs.

    • It is used to retrieve information about the most recent SQL operation.

    • Developers can choose to use SQLCODE and SQLSTATE instead of SQLCA EXEC SQL.

  • Answered by AI
  • Q8. How will you give data from Cobol to JCL ?
  • Ans. 

    Data from Cobol can be passed to JCL using file handling techniques like writing data to a dataset or passing parameters through PROCs.

    • Use file handling techniques to write data from Cobol program to a dataset that can be accessed by JCL.

    • Pass parameters from Cobol program to JCL using PROCs.

    • Use symbolic parameters in JCL to reference data from Cobol programs.

  • Answered by AI
  • Q9. What syntax you give in Parm parameters to not be abend job when Subscript had ended his limit?
  • Ans. 

    Use the COND parameter in the JCL to prevent job abend when subscript limit is reached.

    • Use COND parameter in JCL to check for subscript limit before executing subsequent steps

    • Set COND parameter to check for specific return code when subscript limit is reached

    • Add a condition to bypass subsequent steps if subscript limit is exceeded

  • Answered by AI
  • Q10. How you will add 10 th additional record in file using Cobol program , what is the path.
  • Ans. 

    To add the 10th additional record in a file using a Cobol program, you would need to read the file sequentially and write the new record at the appropriate position.

    • Read the file sequentially until you reach the 9th record

    • Write the 10th record at the current position in the file

    • Update the file with the new record

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - no tips

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Deutsche Bank?
Ask anonymously on communities.

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, Risk Management, Python, Java and Agile.
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
What are the most common questions asked in Deutsche Bank HR round?

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

  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.1/5

based on 314 interview experiences

Difficulty level

Easy 12%
Moderate 77%
Hard 10%

Duration

Less than 2 weeks 60%
2-4 weeks 22%
4-6 weeks 10%
6-8 weeks 2%
More than 8 weeks 5%
View more

Interview Questions from Similar Companies

IDFC FIRST Bank Interview Questions
3.9
 • 759 Interviews
IndusInd Bank Interview Questions
3.5
 • 678 Interviews
Bandhan Bank Interview Questions
3.7
 • 633 Interviews
Yes Bank Interview Questions
3.7
 • 478 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
Private Banking Advisor

Mumbai

5-10 Yrs

Not Disclosed

Sales Manager - Mortgage

New Delhi,

Mumbai

1-6 Yrs

₹ 4-9.1 LPA

Associate - Production Support Engineer

Bangalore / Bengaluru

6-9 Yrs

Not Disclosed

Explore more jobs
Associate
5.3k salaries
unlock blur

₹14.8 L/yr - ₹25.5 L/yr

Senior Analyst
4k salaries
unlock blur

₹6.2 L/yr - ₹14 L/yr

Assistant Vice President
4k salaries
unlock blur

₹25.8 L/yr - ₹44.4 L/yr

Analyst
2.2k salaries
unlock blur

₹4.6 L/yr - ₹10.5 L/yr

Vice President
940 salaries
unlock blur

₹45 L/yr - ₹75 L/yr

Explore more salaries
Compare Deutsche Bank with

Barclays

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

Kotak Mahindra Bank

3.7
Compare

AU Small Finance Bank

4.2
Compare
write
Share an Interview