Upload Button Icon Add office photos

Deutsche Bank

Compare button icon Compare button icon Compare
3.9

based on 3.3k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Deutsche Bank Senior Java Developer Interview Questions and Answers

Updated 5 Jul 2024

Deutsche Bank Senior Java Developer Interview Experiences

3 interviews found

Interview experience
4
Good
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 

(4 Questions)

  • Q1. What do you mean by profile in spring boot..
  • Q2. Coding on hashmap and basic on access modifiers
  • Q3. Kafka partition n cluster
  • Q4. Write a hashcode method
  • Ans. 

    A hashcode method generates a unique integer value for an object based on its properties.

    • Override the hashCode() method in Java to generate a unique integer value for an object.

    • Use the properties of the object to calculate the hash code.

    • Ensure that equal objects have the same hash code.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic oops concepts

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Ques on java 8
Round 2 - Technical 

(1 Question)

  • Q1. Ques on collections

Interview Preparation Tips

Interview preparation tips for other job seekers - Expect a very unprofessional and non serious behaviour from the interview panel. They just want to waste the candidates time by calling for a face to face interview.

Senior Java Developer Interview Questions Asked at Other Companies

asked in Amdocs
Q1. Delete Kth node From EndYou have been given a singly Linked List ... read more
asked in Amdocs
Q2. Intersection of Linked ListYou are given two Singly Linked List o ... read more
asked in Amdocs
Q3. Merge Two Sorted Linked ListsYou are given two sorted linked list ... read more
asked in Amdocs
Q4. LRU Cache ImplementationDesign and implement a data structure for ... read more
Q5. When to use abstract class and when should we use interfaces in J ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write a sample code to settle the accounts of 4 persons after they spent their money together for a trip
  • Ans. 

    Sample code to settle accounts of 4 persons after a trip

    • Create a Person class with attributes like name, spentAmount, and remainingAmount

    • Calculate the total spent amount by all persons

    • Distribute the total spent amount equally among all persons to settle the accounts

  • Answered by AI
Round 2 - Coding Test 

This was a java code interview

Skills evaluated in this interview

What people are saying about Deutsche Bank

View All
masterpie
Verified Icon
6d
works at
Lloyd Law College
#Overtime
🤣🤣🤣
FeedCard Image
Got a question about Deutsche Bank?
Ask anonymously on communities.

Interview questions from similar companies

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

(2 Questions)

  • Q1. Questions on apache kafka, microservices scenario based queries
  • Q2. SQL queries on group by statement
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design immutable class
  • Ans. 

    Immutable class is a class whose state cannot be modified after creation.

    • Make all fields private and final

    • Do not provide setter methods

    • Ensure that any mutable objects within the class are also immutable

  • Answered by AI
  • Q2. Difference between lock and sync
  • Ans. 

    Lock and sync are both mechanisms used in Java for thread synchronization, but they have different implementations and use cases.

    • Lock is a low-level synchronization mechanism provided by the java.util.concurrent.locks package, while sync (synchronized keyword) is a high-level synchronization mechanism provided by Java.

    • Lock provides more flexibility and control over synchronization compared to sync.

    • Lock can be used to c...

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

I applied via LinkedIn and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java memory Managment
  • Q2. Garbage Collection
Round 2 - Coding Test 

Print Dice combination based on the rolled output

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Coding Test 

Trapping rain water and median of two sorted array

Round 2 - Technical 

(2 Questions)

  • Q1. Oops and dbms questions?
  • Q2. Code question in Array and string?
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Sep 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between hashmap and hash table
  • Ans. 

    HashMap is non-synchronized and allows null values, while HashTable is synchronized and does not allow null values.

    • HashMap is non-synchronized, meaning it is not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values for both keys and values, while HashTable does not allow null keys or values.

    • HashMap is generally preferred for non-thread-safe applications, while HashTable is used in mul

  • Answered by AI
  • Q2. Significance of equals and hashcode in java
  • Ans. 

    Equals method is used to compare the content of objects while hashcode method is used to generate a unique integer value for an object.

    • Equals method is used to compare the content of objects for equality.

    • Hashcode method is used to generate a unique integer value for an object.

    • Both methods are important for implementing proper object comparison and hashing in Java.

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. What motivates you to come to office
  • Ans. 

    I am motivated to come to the office by the opportunity to work on challenging projects, collaborate with talented colleagues, and contribute to the success of the team.

    • Challenging projects provide a sense of accomplishment and growth

    • Collaborating with talented colleagues allows for learning and innovation

    • Contributing to the success of the team fosters a sense of purpose and fulfillment

  • Answered by AI
  • Q2. Any scenario where you coached and mentored your collegue in previous organisation?
  • Ans. 

    Yes, I coached a junior developer on implementing design patterns in a project.

    • Provided guidance on how to apply design patterns in code

    • Reviewed their code and provided feedback for improvement

    • Encouraged them to ask questions and seek clarification

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - After applying we were sent a test link which consists of mcq's of Java8, spring boot etc. After that we were called for a walkin drive.There are 2 rounds. One technical and one managerial. Interviewers are friendly and asked basic questions on java and spring.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain event driven architecture of node.js
  • Ans. 

    Node.js uses event-driven architecture where events trigger callbacks to handle asynchronous operations.

    • Node.js uses event loop to handle asynchronous operations efficiently

    • Events are emitted by various objects in Node.js like HTTP servers, file system, etc.

    • Callbacks are registered to handle events and execute code when events occur

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain Encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and only exposing necessary functionalities.

    • It allows for better control over the data by preventing direct access from outside the class.

    • Encapsulation also helps in achieving data abstraction and information hiding.

    • Example: In a class representing a car, th...

  • Answered by AI
  • Q2. How to call rest API
  • Ans. 

    To call a REST API, you can use tools like Postman or code in languages like JavaScript or Python.

    • Use tools like Postman to make HTTP requests to the API endpoints

    • In programming languages like JavaScript, use libraries like Axios or Fetch to make API calls

    • Include necessary headers, parameters, and authentication tokens in the request

    • Handle the response data accordingly, whether it's JSON, XML, or other formats

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Sprig MVC, Spring boot and API

Skills evaluated in this interview

Deutsche Bank Interview FAQs

How many rounds are there in Deutsche Bank Senior Java Developer interview?
Deutsche Bank interview process usually has 1-2 rounds. The most common rounds in the Deutsche Bank interview process are Technical and Coding Test.
How to prepare for Deutsche Bank Senior Java Developer 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, Agile, Spring Boot, Hibernate and SQL.
What are the top questions asked in Deutsche Bank Senior Java Developer interview?

Some of the top questions asked at the Deutsche Bank Senior Java Developer interview -

  1. Write a sample code to settle the accounts of 4 persons after they spent their ...read more
  2. Write a hashcode met...read more
  3. Coding on hashmap and basic on access modifi...read more

Tell us how to improve this page.

Deutsche Bank Senior Java Developer Interview Process

based on 3 interviews in last 1 year

1 Interview rounds

  • Technical Round
View more

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
 • 612 Interviews
IndusInd Bank Interview Questions
3.6
 • 576 Interviews
Yes Bank Interview Questions
3.8
 • 409 Interviews
Barclays Interview Questions
3.9
 • 266 Interviews
View all
Deutsche Bank Senior Java Developer Salary
based on 5 salaries
₹21.9 L/yr - ₹32 L/yr
56% more than the average Senior Java Developer Salary in India
View more details
Associate
4.7k salaries
unlock blur

₹8.8 L/yr - ₹34 L/yr

Senior Analyst
3.9k salaries
unlock blur

₹3.9 L/yr - ₹16.5 L/yr

Assistant Vice President
3.4k salaries
unlock blur

₹15.8 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.7 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Deutsche Bank with

Barclays

3.9
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