Upload Button Icon Add office photos

Filter interviews by

TD Bank Java Developer Interview Questions and Answers

Updated 8 Aug 2024

TD Bank Java Developer Interview Experiences

1 interview found

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

I applied via Job Portal and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is OOPs and ever worked on database?
  • Ans. 

    OOPs stands for Object-Oriented Programming. Yes, I have worked on databases.

    • OOPs is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • It focuses on the use of classes and objects to organize code and data in a modular and reusable way.

    • Examples of OOP languages include Java, C++, and Python.

    • Working on databases involves storing, retri...

  • Answered by AI
  • Q2. What is SpringBoot and difference with spring
  • Ans. 

    SpringBoot is a framework that simplifies the development of Java applications by providing pre-configured settings and tools.

    • SpringBoot is built on top of the Spring framework, providing a more streamlined way to build Spring applications.

    • It includes embedded servers like Tomcat, Jetty, or Undertow, making it easy to deploy standalone applications.

    • SpringBoot uses convention over configuration, reducing the need for ma...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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
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
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Java and sql questions

Round 2 - Technical 

(1 Question)

  • Q1. Basics of java ans core java
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Personal Interview 

(2 Questions)

  • Q1. Java related questions
  • Q2. Microservices related questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Approached by Company

Round 1 - Coding Test 

It was spring boot java based online round

Round 2 - One-on-one 

(2 Questions)

  • Q1. Optional in java.
  • Q2. Eager and lazy initialization in simgleton design pattern
  • Ans. 

    Eager initialization creates the instance of Singleton class at the time of class loading, while lazy initialization creates the instance only when it is required.

    • Eager initialization can lead to resource wastage if the instance is never used.

    • Lazy initialization is more efficient as it only creates the instance when needed.

    • Eager initialization is thread-safe by default, while lazy initialization requires synchronizatio...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Rest api questions
  • Q2. Core java and springboot
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Why string is immutable
  • Ans. 

    String is immutable in Java to ensure thread safety, security, and optimization.

    • Immutable strings are thread-safe as they cannot be modified concurrently by multiple threads.

    • String pooling is possible due to immutability, saving memory and improving performance.

    • Security is enhanced as sensitive information stored in strings cannot be altered.

    • Examples: String str = "Hello"; str.concat(" World"); // str remains "Hello"

  • Answered by AI
  • Q2. What is spring aop
  • Ans. 

    Spring AOP (Aspect-Oriented Programming) is a framework that provides cross-cutting concerns in a modular way.

    • Spring AOP allows separating cross-cutting concerns from the main application logic.

    • It enables developers to define aspects (cross-cutting concerns) separately and apply them to multiple classes.

    • Examples of cross-cutting concerns include logging, security, and transaction management.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Coding Test 

Discussion and analysis on Java and System Design followed by DSA which was a live coding session.

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

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. The java Developer role interview questions for DB are below: 1. Collections and its differences 2. Hashmap vs Concurrent hashmap 3. Stereotypes in spingboot 4. Controller vs RestController 5. Idempottent ...

Interview Preparation Tips

Topics to prepare for Deutsche Bank Java Developer interview:
  • springboot
  • java core

TD Bank Interview FAQs

How many rounds are there in TD Bank Java Developer interview?
TD Bank interview process usually has 1 rounds. The most common rounds in the TD Bank interview process are One-on-one Round.
What are the top questions asked in TD Bank Java Developer interview?

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

  1. What is OOPs and ever worked on databa...read more
  2. What is SpringBoot and difference with spr...read more

Tell us how to improve this page.

TD Bank Java Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Business Analyst
6 salaries
unlock blur

₹9.1 L/yr - ₹51.1 L/yr

Data Scientist
4 salaries
unlock blur

₹28 L/yr - ₹55 L/yr

Manager
4 salaries
unlock blur

₹15 L/yr - ₹32 L/yr

Vice President
4 salaries
unlock blur

₹100 L/yr - ₹101 L/yr

Insurance Adviser
4 salaries
unlock blur

₹15 L/yr - ₹34.2 L/yr

Explore more salaries
Compare TD Bank with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.8
Compare

State Bank of India

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview