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

I was interviewed before Mar 2016.

Interview Questionnaire 

2 Questions

  • Q1. Some technical questions were asked
  • Q2. They spring hibernate MVC flow and core java and Oracle connectivity questions

Interview Preparation Tips

Round: Technical + HR Interview
Experience: There was a Team manager and his junior for the interview

I was interviewed before Sep 2019.

Interview Questionnaire 

8 Questions

  • Q1. 1 tell me about your self?
  • Q2. Why you want work at this company?
  • Q3. Why should I hire you?
  • Q4. If you are experience person----why are you looking for a job company change?
  • Q5. What are your salary requirements?
  • Q6. What is your ambition?
  • Q7. How could be you contribute to our company if you're selected?
  • Q8. Finally do you have any questions to ask me

Interview Preparation Tips

Interview preparation tips for other job seekers - * Research the industry and company
* Clarify your are selling points ex:-(good
communication skills)
* And reason you the job
* Prepare for common interview questions
* Practice---practice---practice and be confident
At the time of interview time.

I applied via Company Website and was interviewed before Oct 2021. 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 - Technical 

(2 Questions)

  • Q1. Design patterns that you have followed in your past projects.
  • Ans. 

    I have followed the MVC, Singleton, and Factory design patterns in my past projects.

    • MVC pattern for separating concerns and improving maintainability

    • Singleton pattern for ensuring only one instance of a class is created

    • Factory pattern for creating objects without exposing the instantiation logic

  • Answered by AI
  • Q2. How to secure the applications?
  • Ans. 

    Applications can be secured by implementing various security measures such as authentication, authorization, encryption, and regular updates.

    • Implement strong authentication mechanisms such as multi-factor authentication

    • Use authorization to restrict access to sensitive data and functionalities

    • Encrypt sensitive data both in transit and at rest

    • Regularly update the application and its dependencies to patch security vulnera...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you are aware of the basics of OOP and the programming language of your preference.
You should be aware of the security threats. The computer science subjects should also be thoroughly understood.
And, the last, excellent communication skills with quick explanation to complete most of your questions in defined interview period.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions asked around 30 from asp.net, MVC, web api , c#, SQL etc
  • Q2. Some non tech questions also.

Interview Preparation Tips

Interview preparation tips for other job seekers - After selecting in state bank of india, I want to share my interview experience:

There were 5 persons in interview panel and they all asked questions both technical as well as non technical.
First they started from non technical questions. Like Why Madhubani painting is famous ? What is going on delhi university at that time contract teachers were on strike. Etc.
They asked about 30 questions from technical from asp.net, aap.net MVC, c#, SQL injection, XSS, CSRF, View vs Table, Function Vs SP, web services vs web api services, banking domain etc.
Overall it was a great experience. I answered almost 80 percentage questions. When interview result declared after 20 days, My name was there and I finally selected one of the big public sector bank. That is SBI. I would like to say Thank You Naukari.com.

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself
  • Q2. What do you know about banking/credit cards
  • Ans. 

    Banking involves managing financial transactions, while credit cards allow users to borrow money for purchases.

    • Banking involves depositing and withdrawing money, managing accounts, and providing loans.

    • Credit cards allow users to borrow money for purchases and pay it back with interest.

    • Credit cards often come with rewards programs or cash back incentives.

    • Credit card debt can accumulate quickly and lead to financial diff

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Telephonic interview and face to face interview was taken. Overall smooth interview process, and asked about credit cards and banking industry for interview questions
Interview experience
4
Good
Difficulty level
Moderate
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 

(10 Questions)

  • Q1. What is one keyword which can be used so that value of variable cannot be changed
  • Ans. 

    final keyword can be used to make a variable's value constant and unchangeable

    • Use 'final' keyword before the variable declaration

    • Once a variable is declared as final, its value cannot be changed

    • Example: final int num = 10; // value of num cannot be modified

  • Answered by AI
  • Q2. Have you heard about deadlock ?
  • Ans. 

    Yes, deadlock is a situation in concurrent programming where two or more threads are waiting for each other to release resources, causing them to be stuck indefinitely.

    • Deadlock occurs when two or more threads are blocked forever, waiting for each other to release resources.

    • It can happen when multiple threads have locks on different resources and each thread is trying to acquire a lock held by another thread.

    • Example: Th...

  • Answered by AI
  • Q3. Tell the approach to print the unique elements from a arraylist
  • Ans. 

    Use a HashSet to store unique elements from the arraylist

    • Create a HashSet and add all elements from the arraylist to it

    • Since HashSet does not allow duplicates, only unique elements will be stored

    • Convert the HashSet back to an arraylist if needed

  • Answered by AI
  • Q4. When can a conflict arise while working with git and github
  • Ans. 

    Conflicts can arise in git and github when multiple developers make changes to the same file or branch simultaneously.

    • Conflicts can occur when two developers make changes to the same line of code in a file.

    • Conflicts can also arise when merging branches that have diverged and contain different changes.

    • Communication among team members is crucial to avoid conflicts and resolve them efficiently.

    • Using pull requests and code...

  • Answered by AI
  • Q5. Why spring has came into picture? What are the features it provides
  • Ans. 

    Spring came into picture to simplify Java development by providing features like dependency injection, aspect-oriented programming, and transaction management.

    • Spring provides dependency injection which helps in managing object dependencies and promotes loose coupling.

    • It supports aspect-oriented programming for separating cross-cutting concerns like logging, security, and transaction management.

    • Spring offers robust tran...

  • Answered by AI
  • Q6. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: A superclass Animal with methods eat() and sleep(). Subclasses Dog and Cat override these methods with their own imp

  • Answered by AI
  • Q7. What is collection framework
  • Ans. 

    Collection framework in Java is a set of classes and interfaces that provide a way to store and manipulate groups of objects.

    • It provides a way to store, retrieve, and manipulate groups of objects.

    • It includes interfaces like List, Set, and Map, and classes like ArrayList, HashSet, and HashMap.

    • Collections framework simplifies the process of working with collections of objects in Java.

  • Answered by AI
  • Q8. Difference between map and set
  • Ans. 

    Map is a collection of key-value pairs where keys are unique, while Set is a collection of unique elements with no duplicates.

    • Map allows duplicate values but keys must be unique

    • Set does not allow duplicate elements

    • Map is accessed using keys, while Set is accessed using elements

    • Example: Map - {1: 'apple', 2: 'banana'}, Set - {'apple', 'banana'}

  • Answered by AI
  • Q9. Which is best choice arraylist or linkedlist when space is not an issue?
  • Ans. 

    ArrayList is a better choice when space is not an issue due to its constant time access, while LinkedList has better performance for insertions and deletions.

    • ArrayList is better for random access as it provides constant time access to elements based on index.

    • LinkedList is better for insertions and deletions as it does not require shifting elements in memory.

    • Example: If you need to frequently add or remove elements in a...

  • Answered by AI
  • Q10. Do you know about javafx jsp
  • Ans. 

    JavaFX is a software platform for creating and delivering desktop applications, while JSP is a technology used for creating dynamic web pages.

    • JavaFX is used for creating rich internet applications with a modern look and feel.

    • JSP is used for developing dynamic web pages with Java code embedded in HTML.

    • JavaFX and JSP can be used together to create interactive web applications.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn the basic concepts of core java

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Give your introduction.
  • Q2. What are your hobbies?
  • Q3. How many branches are there in your area?
  • Ans. 

    There are several branches in my area offering various services.

    • There are multiple branches of different banks in my area.

    • There are several fast food chains with branches in my area.

    • There are multiple supermarkets and grocery stores in my area.

    • There are several pharmacies and medical clinics in my area.

    • There are multiple gas stations in my area.

  • Answered by AI
  • Q4. Except the Taliban issue, say any current affair.
  • Q5. What are the recent technologies used in bank?
  • Ans. 

    Banks are using various technologies such as AI, blockchain, biometrics, and mobile banking apps.

    • Artificial Intelligence (AI) for fraud detection and customer service

    • Blockchain for secure and transparent transactions

    • Biometrics for authentication and security

    • Mobile banking apps for convenient and easy access to banking services

  • Answered by AI
  • Q6. What is phishing?
  • Ans. 

    Phishing is a type of cyber attack where attackers trick individuals into revealing sensitive information.

    • Phishing attacks can come in the form of emails, text messages, or phone calls.

    • Attackers often pose as a trustworthy entity, such as a bank or a popular website.

    • The goal of phishing is to obtain sensitive information, such as login credentials or credit card numbers.

    • Phishing attacks can be prevented by being cautio...

  • Answered by AI
  • Q7. Who is the governor of RBI?
  • Ans. 

    The governor of RBI is Shaktikanta Das.

    • Shaktikanta Das is the current governor of RBI.

    • He assumed office on December 12, 2018.

    • Prior to becoming the governor, he served as the Secretary of the Department of Economic Affairs in the Ministry of Finance.

    • As the governor, he is responsible for formulating and implementing monetary policies in India.

    • He plays a crucial role in maintaining financial stability and regulating the

  • Answered by AI
  • Q8. What is the net share value of Federal Bank?
  • Ans. 

    The net share value of Federal Bank is constantly changing and can be found on financial websites or through a stockbroker.

    • The net share value of Federal Bank is determined by the market demand and supply of its shares.

    • It can be found on financial websites such as Yahoo Finance or through a stockbroker.

    • As of a specific date or time, the net share value may be different.

    • The net share value is an important indicator of t

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your preparations well. Know about the bank, what are its new products. Prepare yourself with some basic banking conceots.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude questions were asked

Round 2 - Group Discussion 

Topic was given and there were 10 members

Round 3 - HR 

(2 Questions)

  • Q1. Question about Federal Bank
  • Q2. HR questions, banking questions
Interview experience
1
Bad
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 - Aptitude Test 

Basics , maths and general reasoning along with management

Round 3 - Group Discussion 

GD had 6 members , topic was given on the spot

Round 4 - HR 

(2 Questions)

  • Q1. What was the last new you heard about us?
  • Ans. 

    I heard that your company recently launched a new product.

    • The company launched a new product

    • The product is receiving positive reviews

    • The product is expected to increase company revenue

  • Answered by AI
  • Q2. How will you handle xyz ?
  • Ans. 

    I will handle xyz by following a systematic approach and seeking guidance from experienced colleagues.

    • I will gather all relevant information about xyz to understand the situation better.

    • I will consult with experienced colleagues or supervisors to seek their guidance and expertise.

    • I will develop a plan of action based on the information and guidance received.

    • I will execute the plan while keeping track of progress and ma...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - easy peasy , be yourself, dont overdo it.
Do your homework before appearing

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

₹0 L/yr - ₹0 L/yr

Data Scientist
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Vice President
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Insurance Adviser
4 salaries
unlock blur

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