Skip to content

HDFC Bank Placement Papers 2024

Overview

This page collects HDFC Bank placement papers from 2024 with previous-year questions, solutions, and the 2024 exam pattern. It is useful when you want real drive history: what the OA looked like, which question types repeated, and how solutions were approached. Work through the papers below to build speed and accuracy, then compare against newer 2025 material so your prep matches both established HDFC Bank patterns and the latest shifts.

HDFC Bank Online Assessment 2024 pattern

Section Questions Time Difficulty
Aptitude 20-25 30 min Medium
Technical 15-20 30 min Medium
Coding 1-2 30 min Medium

HDFC Bank Placement Papers 2024 - actual questions & solutions

This section contains practice questions styled on HDFC Bank placement papers 2024 (previous-year pattern), with worked solutions. Use them as timed sectional drills - from student reports drives vary by college and role, so treat this as a high-signal practice bank, not an official paper dump.

Question 1

Q1: Simple interest on ₹5000 at 8% per annum for 3 years is?

Solution:

SI = (P × R × T)/100 = (5000 × 8 × 3)/100 = ₹1200.

Answer: ₹1200

Question 2

Q2: A and B together finish a job in 10 days. B alone takes 15 days. How many days does A alone take?

Solution:

Together rate = 1/10. B’s rate = 1/15.

A’s rate = 1/10 − 1/15 = (15−10)/(10×15) = 5/150. Days for A alone = 150/5 = 30 days.

Answer: 30 days

Question 3

Q3: Average of 5 numbers is 20. If one number 15 is replaced by 25, what is the new average?

Solution:

Old sum = 5 × 20 = 100. New sum = 100 − 15 + 25 = 110. New average = 110/5 = 22.

Answer: 22

Question 4

Q4: A number is increased by 10% and then decreased by 10%. Find the net percentage change.

Solution:

Let original = 100. After +10% → 110. After −10% → 110 − 11 = 99.

Net change = 100 − 99 = 1. Net % = 1% decrease (always a loss of (10/10)² %).

Answer: 1% decrease

Question 5

Q5: In a row of 41 students, A is 9th from the left and B is 12th from the right. How many students are between A and B if A is to the left of B?

Solution:

Positions from left: A = 9, B = 41 − 12 + 1 = 30. Students between = 30 − 9 − 1 = 20.

Answer: 20

Question 6

Q6: Which number does not belong: 10, 25, 45, 54, 60, 75, 80?

Solution:

Pattern: All divisible by 5 except 54

Odd one out = 54.

Answer: 54

Question 7

Q7: Identify the error: ‘Neither of the boys have submitted their assignment.’

Solution:

‘Neither’ is singular → verb should be has, not have.

Correct: Neither of the boys has submitted his/their assignment.

Answer: have → has

Question 8

Q8: Choose the synonym of ‘Eloquent’.

Solution:

In placement verbal sections, ‘Eloquent’ is closest in meaning to Fluent among common options.

Answer: Fluent

Question 9: first non-repeating character

Show solution

Problem Statement: Return the first non-repeating character in a string, or ‘_’ if none.

Example:

Input: "swiss"
Output: 'w'

Solution (Java):

public char firstUnique(String s) {
int[] freq = new int[256];
for (char c : s.toCharArray()) freq[c]++;
for (char c : s.toCharArray()) if (freq[c] == 1) return c;
return '_';
}

Time Complexity: O(n)
Space Complexity: O(1)

Question 10: rotate array right by k

Show solution

Problem Statement: Rotate the array to the right by k steps.

Example:

Input: [1,2,3,4,5,6,7], k = 3
Output: [5,6,7,1,2,3,4]

Solution (Java):

public void rotate(int[] nums, int k) {
k %= nums.length;
reverse(nums, 0, nums.length - 1);
reverse(nums, 0, k - 1);
reverse(nums, k, nums.length - 1);
}
void reverse(int[] a, int l, int r) {
while (l < r) { int t = a[l]; a[l++] = a[r]; a[r--] = t; }
}

Time Complexity: O(n)
Space Complexity: O(1)

Question 11: climbing stairs

Show solution

Problem Statement: You can climb 1 or 2 steps. How many distinct ways to climb n stairs?

Example:

Input: n = 4
Output: 5

Solution (Java):

public int climbStairs(int n) {
if (n <= 2) return n;
int a = 1, b = 2;
for (int i = 3; i <= n; i++) {
int c = a + b; a = b; b = c;
}
return b;
}

Time Complexity: O(n)
Space Complexity: O(1)

Key insights from 2024 HDFC Bank Online Assessment

  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Technical MCQs: Strong emphasis on programming fundamentals, DBMS, OOPs, banking domain knowledge
  3. Coding Section: 1-2 coding problems in 30 minutes requires good problem-solving skills
  4. Time Management: 20-25 aptitude in 30 min + 15-20 technical in 30 min + 1-2 coding in 30 min
  5. Success Rate: Only 20-25% cleared assessment and advanced to interviews
  6. Platform: HDFC Bank assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, banking domain knowledge

HDFC Bank 2024 interview experiences

Based on candidate experiences from 2024 HDFC Bank interviews:

2024 Interview Process:

  1. Online Assessment (90 minutes): Aptitude (20-25) + Technical (15-20) + Coding (1-2)
  2. Technical Interview (45-60 minutes): Programming concepts, DBMS, OOPs, banking domain knowledge, problem-solving
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation, banking industry interest

Common 2024 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, simple interest, financial calculations
  • Technical: Programming concepts, DBMS, OOPs, banking domain knowledge
  • Coding: Arrays, strings, basic algorithms
  • Behavioral: Problem-solving approach, teamwork, motivation, banking industry interest

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Understand programming fundamentals, DBMS, OOPs, banking domain basics
  • Practice coding problems - arrays, strings, basic algorithms
  • Prepare behavioral examples using STAR format
  • Understand HDFC Bank’s business model and banking services

For detailed interview experiences, visit HDFC Bank Interview Experience page.

Preparation tips for HDFC Bank 2024 pattern

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Technical Fundamentals: Strong understanding of programming, DBMS, OOPs concepts
  3. Banking Domain: Basic understanding of banking industry and HDFC Bank services
  4. Practice Previous Year Papers: Solve HDFC Bank assessment papers from 2020-2024 to understand patterns
  5. Time Management: Practice completing 20-25 aptitude questions in 30 minutes
  6. Coding Practice: Practice arrays, strings, basic algorithms
  7. Technical MCQs: Practice programming concepts, DBMS, OOPs, banking basics
  8. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, banking interest
  9. Mock Tests: Take timed practice tests to improve speed and accuracy
  10. Banking Focus: Understand banking industry trends and HDFC Bank’s services

Comments & Suggestions

Similar companies

ICICI Bank · JP Morgan · Goldman Sachs · Morgan Stanley · Bank of America · Wells Fargo