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 Senior Software Engineer Interview Questions, Process, and Tips

Updated 20 Dec 2024

Top Deutsche Bank Senior Software Engineer Interview Questions and Answers

Deutsche Bank Senior Software Engineer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Write a program to check numer is palindrom or not.
  • Ans. 

    Program to check if a number is a palindrome or not.

    • Convert the number to a string to easily check for palindrome

    • Reverse the string and compare it with the original string

    • If they are the same, the number is a palindrome

  • Answered by AI
  • Q2. What is the functionality of Lambda Expression in Java.
  • Ans. 

    Lambda expressions in Java are used to provide a concise way to represent anonymous functions.

    • Lambda expressions are used to define inline implementation of a functional interface.

    • They enable you to pass functionality as an argument to a method.

    • Lambda expressions are made up of parameters, an arrow, and a body.

    • Example: (a, b) -> a + b

  • Answered by AI
  • Q3. How to call default method of interface if class implemented multiple interfaces.
  • Ans. 

    To call a default method of an interface when a class implements multiple interfaces, use the interface name followed by the method name.

    • Use InterfaceName.super.methodName() to call the default method of a specific interface.

    • If a class implements multiple interfaces with default methods of the same name, you must specify the interface name to call the desired method.

    • Example: Interface1.super.defaultMethod() to call the

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Design an online bidding system

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste your time if you don't get reply within 5 days

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What are your roles in your current organization
  • Q2. How Micro-frontends work.
  • Ans. 

    Micro-frontends are a technique for breaking down a large frontend application into smaller, more manageable parts.

    • Each micro-frontend is a self-contained module that can be developed and deployed independently.

    • They communicate with each other through APIs or events.

    • Micro-frontends can be written in different languages and frameworks.

    • They can be combined to form a cohesive user interface.

    • Examples of companies using mic

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask your HR to share JD before going to there office. Because they call lot of people for few openings and reject you if your skills don't match. All the questions will be from your resume.

Skills evaluated in this interview

What people are saying about Deutsche Bank

View All
bountifulkamikaze
Verified Icon
4d
works at
Yes Bank
What is the average salary given at Deutsche Bank regardless of the position?
Got a question about Deutsche Bank?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Assignment 

A straightforward introduction to core Java along with the Spring framework.

Round 2 - Technical 

(1 Question)

  • Q1. What are the basic features of Java 8?
Round 3 - One-on-one 

(1 Question)

  • Q1. What are some critical people capability questions based on specific scenarios?

Interview Preparation Tips

Interview preparation tips for other job seekers - You can join the group after ten years of experience.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Java and react question
Round 2 - Technical 

(1 Question)

  • Q1. Little technical and project oriented question
Round 3 - Coding Test 

Basic hacker rank problem

Round 4 - CTO round 

(1 Question)

  • Q1. Asked few questions on react and java
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Java Stream coding questions
  • Q2. Java Collections
  • Q3. Spring Boot Annotations
  • Q4. Sql Queries highest 3 salary employee name
  • Ans. 

    Use SQL query to retrieve the names of the top 3 employees with the highest salary.

    • Use the ORDER BY clause to sort the salaries in descending order.

    • Use the LIMIT clause to limit the results to the top 3.

    • Join the employee table with the salary table to retrieve employee names.

  • Answered by AI

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Lots of technical questions but the interview was not technical..
  • Q2. What is JIT compiler
  • Ans. 

    JIT compiler stands for Just-In-Time compiler, which compiles code during runtime instead of ahead of time.

    • JIT compiler improves performance by compiling code on the fly as it is needed

    • It converts bytecode into native machine code for execution

    • Examples include Java HotSpot JIT compiler and .NET JIT compiler

  • Answered by AI
  • Q3. What are futures
  • Ans. 

    Futures are financial contracts that obligate the buyer to purchase an asset or the seller to sell an asset at a predetermined future date and price.

    • Futures are standardized contracts traded on exchanges, where the buyer agrees to purchase an asset at a future date for a price agreed upon today.

    • They are commonly used in commodities, currencies, and financial instruments trading.

    • Futures allow investors to hedge against ...

  • Answered by AI
  • Q4. What is GC and what types we have
  • Ans. 

    GC stands for Garbage Collection, a process in programming languages where unused memory is automatically reclaimed.

    • Types of GC include: Mark and Sweep, Reference Counting, Generational, and Incremental.

    • Mark and Sweep: Identifies and removes unreachable objects.

    • Reference Counting: Keeps track of the number of references to an object and deletes it when the count reaches zero.

    • Generational: Divides objects into different...

  • Answered by AI
  • Q5. Walk me through a trading process
  • Ans. 

    A trading process involves buying and selling financial instruments in the market.

    • Research and analysis of market trends and opportunities

    • Placing buy or sell orders through a trading platform

    • Monitoring and managing open positions

    • Executing trades based on predetermined strategies

    • Recording and analyzing trade data for performance evaluation

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. All are about our primary skills and project in 1st round of technical
Interview experience
4
Good
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based Pega technical questions.
  • Q2. According to your work experience I had tackled them
Round 3 - Technical 

(1 Question)

  • Q1. Scenario based questions with hardness level increased. Normally Manager takes it.
Round 4 - HR 

(1 Question)

  • Q1. Salary discussions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Sql, reporting tool, control m , unix, power bi
  • Q2. Sql, unix, testing tool

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the JD

Deutsche Bank Interview FAQs

How many rounds are there in Deutsche Bank Senior Software Engineer interview?
Deutsche Bank interview process usually has 1-2 rounds. The most common rounds in the Deutsche Bank interview process are Resume Shortlist, One-on-one Round and Technical.
How to prepare for Deutsche Bank Senior Software Engineer 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 Java, GIT, Python, Kotlin and Oracle.
What are the top questions asked in Deutsche Bank Senior Software Engineer interview?

Some of the top questions asked at the Deutsche Bank Senior Software Engineer interview -

  1. How to call default method of interface if class implemented multiple interface...read more
  2. What is the functionality of Lambda Expression in Ja...read more
  3. Write a program to check numer is palindrom or n...read more

Tell us how to improve this page.

Deutsche Bank Senior Software Engineer Interview Process

based on 3 interviews

Interview experience

3.3
  
Average
View more
Deutsche Bank Senior Software Engineer Salary
based on 88 salaries
₹11.5 L/yr - ₹40 L/yr
68% more than the average Senior Software Engineer Salary in India
View more details

Deutsche Bank Senior Software Engineer Reviews and Ratings

based on 7 reviews

3.2/5

Rating in categories

2.9

Skill development

3.5

Work-life balance

3.1

Salary

3.5

Job security

2.7

Company culture

2.1

Promotions

3.0

Work satisfaction

Explore 7 Reviews and Ratings
Associate
4.8k salaries
unlock blur

₹8.8 L/yr - ₹35 L/yr

Senior Analyst
3.9k salaries
unlock blur

₹4 L/yr - ₹16.6 L/yr

Assistant Vice President
3.4k salaries
unlock blur

₹16 L/yr - ₹48.5 L/yr

Analyst
2.1k salaries
unlock blur

₹2 L/yr - ₹11 L/yr

Financial Analyst
1k salaries
unlock blur

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