Upload Button Icon Add office photos

HDFC Bank

Compare button icon Compare button icon Compare
3.9

based on 37.9k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

HDFC Bank Softwaretest Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is Overlaoding and overriding?
  • Ans. 

    Overloading is having multiple methods in the same class with the same name but different parameters. Overriding is implementing a method in a subclass that is already defined in the superclass.

    • Overloading allows multiple methods with the same name but different parameters in the same class.

    • Overriding involves implementing a method in a subclass that is already defined in the superclass.

    • Overloading is resolved at compi

  • Answered by AI
  • Q2. What are the Java features?
  • Ans. 

    Java features include object-oriented programming, platform independence, automatic memory management, and multithreading.

    • Object-oriented programming: Java supports classes and objects, allowing for modular and reusable code.

    • Platform independence: Java programs can run on any platform with the Java Virtual Machine (JVM).

    • Automatic memory management: Java uses garbage collection to automatically manage memory allocation ...

  • Answered by AI
  • Q3. What is abstrack class?
  • Ans. 

    Abstract class is a class that cannot be instantiated and may contain abstract methods.

    • Cannot be instantiated directly

    • May contain abstract methods that must be implemented by subclasses

    • Used to define a common interface for subclasses

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. System design , HLD, LLD , coding question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Coding round consisted of three problems with easy to moderate level difficulty.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Variation of Minimum number of platforms required for railway station.
  • Ans. 

    Minimum number of platforms required for a railway station depends on the maximum number of trains arriving and departing at the same time.

    • Calculate the maximum number of trains arriving and departing at the same time.

    • Determine the time intervals for each train's arrival and departure.

    • Add extra platforms for buffer and unexpected delays.

    • Consider factors like train length, frequency, and scheduling conflicts.

    • Example: If...

  • Answered by AI
  • Q2. Rearrange the array such that the negative numbers are shifted to the beginning.
  • Ans. 

    Rearrange array with negative numbers at the beginning

    • Iterate through the array and move negative numbers to the beginning

    • Use two pointers approach to swap elements

    • Maintain the order of negative numbers while shifting them to the beginning

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Implement a simple program using multithreading.
  • Ans. 

    A simple program using multithreading can be implemented to demonstrate parallel execution of tasks.

    • Create a class that implements the Runnable interface in Java.

    • Override the run() method to define the task that will run in a separate thread.

    • Create instances of the class and start them using the Thread class.

    • Use synchronization mechanisms like locks or semaphores to manage shared resources in a thread-safe manner.

  • Answered by AI
  • Q2. Explain in details about the Java Collections API.
  • Ans. 

    Java Collections API provides a set of classes and interfaces to store and manipulate collections of objects.

    • Includes interfaces like List, Set, and Map for different types of collections

    • Provides classes like ArrayList, HashSet, and HashMap for implementing collections

    • Offers utility classes like Collections for common operations on collections

    • Introduced in Java 2 and has been expanded in subsequent versions

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Technical questions related to security
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Behavioural and culture fit

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple algorithm question about sorting

Round 2 - Technical 

(2 Questions)

  • Q1. Algorith question about quick sort
  • Q2. Nlonn run time of the sort
  • Ans. 

    The time complexity of the quicksort algorithm is O(n log n).

    • Quicksort has an average time complexity of O(n log n).

    • The best case time complexity of quicksort is O(n log n) when the pivot element divides the array into two equal halves.

    • The worst case time complexity of quicksort is O(n^2) when the pivot element is the smallest or largest element in the array.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed in Jun 2023. There were 3 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 - Coding Test 

Ms office,Core Java , Tally , C,

Round 3 - Group Discussion 

In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide

Interview Preparation Tips

Interview preparation tips for other job seekers - Upgrade the skills

I applied via Naukri.com and was interviewed in Apr 2022. There were 2 interview rounds.

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

(2 Questions)

  • Q1. 1. Power BI, 2. SQL,
  • Q2. 3. Azure and 4. Excel.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Knowledge
2. Communication and
3. Confidence.

I applied via Company Website and was interviewed before Oct 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
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

Tell us how to improve this page.

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
Axis Bank Interview Questions
3.8
 • 1.4k Interviews
IDFC FIRST Bank Interview Questions
4.0
 • 614 Interviews
IndusInd Bank Interview Questions
3.6
 • 578 Interviews
Bandhan Bank Interview Questions
3.7
 • 512 Interviews
Yes Bank Interview Questions
3.8
 • 409 Interviews
View all
HDFC Bank Softwaretest Engineer Salary
based on 30 salaries
₹3 L/yr - ₹9 L/yr
12% more than the average Softwaretest Engineer Salary in India
View more details

HDFC Bank Softwaretest Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 2 Reviews and Ratings
Deputy Manager
15.1k salaries
unlock blur

₹2 L/yr - ₹8.3 L/yr

Manager
10.1k salaries
unlock blur

₹5 L/yr - ₹14.5 L/yr

Assistant Manager
9.4k salaries
unlock blur

₹1.8 L/yr - ₹7.2 L/yr

Relationship Manager
7.7k salaries
unlock blur

₹2.4 L/yr - ₹12.8 L/yr

Senior Manager
6.1k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Explore more salaries
Compare HDFC Bank with

ICICI Bank

4.0
Compare

State Bank of India

3.8
Compare

Axis Bank

3.8
Compare

Kotak Mahindra Bank

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview