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 Freshers

Updated 6 Dec 2024

Top Deutsche Bank Interview Questions and Answers for Freshers

View all 90 questions

Deutsche Bank Interview Experiences for Freshers

Popular Designations

77 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

Top Deutsche Bank Software Developer Interview Questions and Answers

Q1. Minimum Number Of OperationsYou are given an array 'ARR' of 'N' positive integers. You need to find the minimum number of operations needed to make all elements of the array equal. You can perform addition, multiplication, subtraction or di... read more
View answer (3)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
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)
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)
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

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the StringYou are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If the given string is: STR = "abcde". You have to print the string "edcba... read more
View answer (3)

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
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

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Get interview-ready with Top Deutsche Bank Interview Questions

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

Senior Salesforce Developer Interview Questions asked at other Companies

Q1. What are best practices to write trigger? What are execution order in salesforce? What are deployment techniques used in salesforce? What is min code coverage required while deployment? What is azure dev ops?
View answer (1)

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

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

SDE (Software Development Engineer) interview

user image OneStop Placement

posted on 11 Jan 2022

NLS Screening and Control Analyst 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

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 at Malviya National Institute of Technology (NIT), Jaipur 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

Graduate Trainee Interview Questions asked at other Companies

Q1. Given an array, how do you get the count of pairs that sum to even
View answer (8)

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 Resume Shortlist.
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 KYC, Anti Money Laundering, Investment Banking, Client Onboarding 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
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 Freshers

based on 16 interviews in last 1 year

Interview experience

4
  
Good
View more

People are getting interviews through

based on 29 Deutsche Bank interviews
Campus Placement
Job Portal
Referral
Company Website
38%
24%
10%
7%
21% 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