Upload Button Icon Add office photos

Deutsche Bank

Compare button icon Compare button icon Compare

Filter interviews by

Deutsche Bank Java Full Stack Developer Interview Questions and Answers

Updated 7 May 2024

10 Interview questions

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

A Java Full Stack Developer was asked
Q. What is the difference between an attached entity and a 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.

  • E...

Java Full Stack Developer Interview Questions Asked at Other Companies

asked in CGI Group
Q1. Coding question - 1. Create a immutable class of orders. What hap ... read more
asked in CGI Group
Q2. How are 4-5 microservices connected in rest api's? which techniqu ... read more
Q3. What is the difference between method overloading and overriding?
asked in CGI Group
Q4. Explain Spring Cloud and how you use it in microservices.
Q5. How do you connect to a database with Java and update data?
A Java Full Stack Developer was asked
Q. How would you 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

A Java Full Stack Developer was asked
Q. How do you filter a List using Streams in Java?
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());

What people are saying about Deutsche Bank

View All
a settlement analyst
1w
Need suggestions or advice
Hii Folks Looking for career advice I've total experience of 5 years mostly in customer care and sales I joined Deutsche Bank last year as an settlement Analyst the package that was offered was less as compared to other analyst on the same role due to field change as I joined Db after completing my MBA. I'm looking for a good raise to achieve my financial goals, I'm about to complete a year next month. Shall I stay in the same co for a few more months or start looking for another job for a good raise Unluckily there are very less options in my city Jaipur for a Ib candidate, can you suggest which field or profile would be the most suitable for me for a good hike I'm looking for a package around 8.5-9 LPA which is around 50-55% above my current package.
Got a question about Deutsche Bank?
Ask anonymously on communities.
A Java Full Stack Developer was asked
Q. Write a code 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

A Java Full Stack Developer was asked
Q. What are the differences between lazy and eager fetching?
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 ...

A Java Full Stack Developer was asked
Q. Write a code 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

Are these interview questions helpful?
A Java Full Stack Developer was asked
Q. Write code for Builder or Factory Pattern.
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 multi...

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

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.

Deutsche Bank Java Full Stack Developer Interview Experiences

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

Interview questions from similar companies

I applied via Campus Placement

Interview Questionnaire 

4 Questions

  • Q1. Explain the background process that takes place during an atm transaction
  • Q2. Cut cake into 8 pieces .You can use knife 3 times only
  • Q3. A shot fired from a gun pointing towards a tree full of birds. All birds left except one. Why ?
  • Q4. Explain projects which you made in college?
  • Ans. 

    Developed a web-based attendance management system and a mobile app for event management.

    • Created a database schema and implemented CRUD operations using PHP and MySQL.

    • Designed the user interface using HTML, CSS, and JavaScript.

    • Integrated Google Maps API for location tracking in the mobile app.

    • Implemented push notifications using Firebase Cloud Messaging.

    • Collaborated with a team of four to complete the projects within t...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The question paper was a mix of aptitude, programming of c++ java , sql and reasoning.
There was negative marking set for each questions.
Tips: Attempt that portion first in which you are really confident.
Dont try to attempt all questions , as negative marking plays big role.
Duration: 60 minutes

Round: Technical Interview
Experience: As Barclays is a bank , so this kind of question is obvious.
Be prepared for technical process that takes place in a usual banking domain.
Also , any type of question whether reasoning based or technical can be asked.
Tips: Be confident. Try to tell everything in a straight manner.

Round: Case Study Interview
Experience: You can put humour while answering as this shows your positivity.
There can be many reason for this like birds ia dead , bird is deaf , bird is of plastic. You can choose whatever hit into your mind.

Round: Behavioural Interview
Experience: Explaining the thing in which you already have knowledge is a plus point.
But make sure you have complete knowledge of your college project as they can ask as many questions as possible because your project is the main thing which can extend your interview time.

Skills: Common Sense, Presence Of Mind, Positive Thinking, Ability To Deliver On A Project, C Programming
College Name: UPTU
Motivation: As it is a product based company , so chances of growth is good and pay scale is better.

Java Full Stack Developer Interview Questions Asked at Other Companies

asked in CGI Group
Q1. Coding question - 1. Create a immutable class of orders. What hap ... read more
asked in CGI Group
Q2. How are 4-5 microservices connected in rest api's? which techniqu ... read more
Q3. What is the difference between method overloading and overriding?
asked in CGI Group
Q4. Explain Spring Cloud and how you use it in microservices.
Q5. How do you connect to a database with Java and update data?

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: Was nice experience,should have good aptitude.
Tips: Learn aptitude more and morr
Duration: 60 minutes

Round: Group Discussion
Experience: Just speak about the topic
Tips: Do not get silent

Round: Technical Interview
Experience: iOS,C/C++
Tips: Just be confident about your answwers ansd show that you are capable to do each and everything in this world and you have quick learning capacity to grasp anything.

General Tips: C/C++,
Skills:
College Name: CDAC PUNE
Motivation: Bank more than 325 years old.

I applied via LinkedIn and was interviewed in May 2021. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What challenges did u faced in your role
  • Ans. 

    I faced various challenges, including tight deadlines, evolving technologies, and team collaboration issues.

    • Tight deadlines: I had to deliver a complex feature in two weeks, which required prioritizing tasks and effective time management.

    • Evolving technologies: Adapting to new frameworks like React and integrating them into existing projects posed a learning curve.

    • Team collaboration: Miscommunication led to duplicated e...

  • Answered by AI
  • Q2. What is ur purpose of leaving ur ofz
  • Ans. 

    I am looking for new challenges and growth opportunities.

    • Seeking a more challenging role

    • Looking for opportunities to learn and grow

    • Want to work with new technologies

    • Desire to work in a different industry

    • Seeking better work-life balance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident stay strong

What people are saying about Deutsche Bank

View All
a settlement analyst
1w
Need suggestions or advice
Hii Folks Looking for career advice I've total experience of 5 years mostly in customer care and sales I joined Deutsche Bank last year as an settlement Analyst the package that was offered was less as compared to other analyst on the same role due to field change as I joined Db after completing my MBA. I'm looking for a good raise to achieve my financial goals, I'm about to complete a year next month. Shall I stay in the same co for a few more months or start looking for another job for a good raise Unluckily there are very less options in my city Jaipur for a Ib candidate, can you suggest which field or profile would be the most suitable for me for a good hike I'm looking for a package around 8.5-9 LPA which is around 50-55% above my current package.
Got a question about Deutsche Bank?
Ask anonymously on communities.

I appeared for an interview in Dec 2020.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteria7.5 CGPABarclays interview preparation:Topics to prepare for the interview - projects. solving random problems, from Leetcode, DSA skills.Time required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Master Your Data Structures and Algorithm, solving Leetcode, Geeksforgeeks, having a great solved count is not that important. Just make sure, you are comfortable.
Tip 2 : Master Your Data Structures and Algorithm, if you think, you are done, try reading more about competietive programming topics at https://cp-algorithms.com/
Tip 3 : Have at least 2 Good Project, That would be an advantage

Application resume tips for other job seekers

Tip 1 : Try to complete in 1 page, without reducing the beauty. Show atleast 2 project, 2 hackathons, 1 internship, and your achivement.
Tip 2 : Be honest. Copying something from github, isn't a great idea. You can do, but please work in it. Spend 1 week reading that code, and try implementing that project by yourself, and then put into the resume.

Final outcome of the interviewSelected
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Joins, Jobs, stored procedures,cursors.

Round 2 - HR 

(1 Question)

  • Q1. What is my package
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Data structures and computer fundamentals

Round 3 - Technical 

(2 Questions)

  • Q1. Data structures
  • Q2. Medium leetcode

Interview Preparation Tips

Interview preparation tips for other job seekers - Data structures and projects
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

3 rounds of basic aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. Basic C, DSA, JAVA questions
Round 3 - Technical 

(1 Question)

  • Q1. Tell us about your projects, whats your interests are, then some technical questions in JAVA
Round 4 - HR 

(1 Question)

  • Q1. Basic HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa and one coding language, be concise with your answers and if you don't know anything be honest with them
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Nested graph question, matrix question on hackerrank

Round 2 - Technical 

(3 Questions)

  • Q1. Related to SQL mostly i.e., joins
  • Q2. Give two tables perform different type of joins
  • Ans. 

    Two tables performing different types of joins

    • Inner join: Returns rows when there is a match in both tables

    • Left join: Returns all rows from the left table and the matched rows from the right table

    • Right join: Returns all rows from the right table and the matched rows from the left table

    • Full outer join: Returns all rows when there is a match in either table

  • Answered by AI
  • Q3. Puzzle related to candles
Round 3 - HR 

(2 Questions)

  • Q1. So many questions were there to check ability to response without hesitation
  • Q2. Contribution to the company along with their values

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Asked about OOps concepts?
  • Ans. 

    Object-Oriented Programming (OOP) is a paradigm based on objects that encapsulate data and behavior, promoting modularity and reusability.

    • 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 th...

  • Answered by AI
  • Q2. Asked about OOPS concept?
  • Ans. 

    OOP is a programming paradigm based on objects, encapsulating data and behavior for better modularity and reusability.

    • 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 interface for...

  • Answered by AI

Deutsche Bank Interview FAQs

How many rounds are there in Deutsche Bank Java Full Stack Developer interview?
Deutsche Bank interview process usually has 2 rounds. The most common rounds in the Deutsche Bank interview process are Technical.
How to prepare for Deutsche Bank Java Full Stack 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, Angular, Microservices, Spring Boot and React.Js.
What are the top questions asked in Deutsche Bank Java Full Stack Developer interview?

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

  1. Write code for Builder/Factory Pattern, basically anything other than Single...read more
  2. Write snippet for creating an Entity Cla...read more
  3. Why is Redux used in Re...read more

Tell us how to improve this page.

Overall Interview Experience Rating

2/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

IDFC FIRST Bank Interview Questions
3.9
 • 745 Interviews
IndusInd Bank Interview Questions
3.5
 • 670 Interviews
Bandhan Bank Interview Questions
3.7
 • 614 Interviews
Yes Bank Interview Questions
3.7
 • 474 Interviews
Barclays Interview Questions
3.8
 • 286 Interviews
View all
Deutsche Bank Java Full Stack Developer Salary
based on 7 salaries
₹13.5 L/yr - ₹30 L/yr
215% more than the average Java Full Stack Developer Salary in India
View more details
Associate
5.2k salaries
unlock blur

₹7.9 L/yr - ₹34 L/yr

Senior Analyst
4k salaries
unlock blur

₹4 L/yr - ₹17.1 L/yr

Assistant Vice President
3.9k salaries
unlock blur

₹16.5 L/yr - ₹48.4 L/yr

Analyst
2.2k salaries
unlock blur

₹2.5 L/yr - ₹12.9 L/yr

Vice President
934 salaries
unlock blur

₹22 L/yr - ₹95 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