2025 papers
HSBC Placement Papers 2024
Overview
This page collects HSBC 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 HSBC patterns and the latest shifts.
HSBC 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 |
HSBC Placement Papers 2024 - actual questions & solutions
This section contains practice questions styled on HSBC 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: A and B together finish a job in 8 days. B alone takes 24 days. How many days does A alone take?
Solution:
Together rate = 1/8. B’s rate = 1/24.
A’s rate = 1/8 − 1/24 = (24−8)/(8×24) = 16/192. Days for A alone = 192/16 = 12 days.
Answer: 12 days
Question 2
Q2: Average of 6 numbers is 18. If one number 12 is replaced by 24, what is the new average?
Solution:
Old sum = 6 × 18 = 108. New sum = 108 − 12 + 24 = 120. New average = 120/6 = 20.
Answer: 20
Question 3
Q3: 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 4
Q4: A number is increased by 25% and then decreased by 25%. Find the net percentage change.
Solution:
Let original = 100. After +25% → 125. After −25% → 125 − 31.25 = 93.75.
Net change = 100 − 93.75 = 6.25. Net % = 6.25% decrease (always a loss of (25/10)² %).
Answer: 6.25% decrease
Question 5
Q5: Statements: All files are items. Some items are cheap. Conclusions: I. Some files are cheap. II. All items are files.
Solution:
From the statements, files⊆items and some items overlap cheap. That does not force some files to be cheap, and ‘all items are files’ reverses the first statement wrongly.
Neither conclusion follows.
Answer: Neither I nor II follows
Question 6
Q6: In a row of 40 students, A is 11th from the left and B is 10th from the right. How many students are between A and B if A is to the left of B?
Solution:
Positions from left: A = 11, B = 40 − 10 + 1 = 31. Students between = 31 − 11 − 1 = 19.
Answer: 19
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 ‘Genuine’.
Solution:
In placement verbal sections, ‘Genuine’ is closest in meaning to Authentic among common options.
Answer: Authentic
Question 9: check palindrome
Show solution
Problem Statement: Return true if the string reads the same forward and backward (ignore case).
Example:
Input: "Level"Output: trueSolution (Java):
public boolean isPalindrome(String s) { s = s.toLowerCase(); int i = 0, j = s.length() - 1; while (i < j) { if (s.charAt(i++) != s.charAt(j--)) return false; } return true;}Time Complexity: O(n)
Space Complexity: O(1)
Question 10: reverse a string
Show solution
Problem Statement: Given a string, return it reversed.
Example:
Input: "placement"Output: "tnemecalp"Solution (Java):
public String reverse(String s) { return new StringBuilder(s).reverse().toString();}Time Complexity: O(n)
Space Complexity: O(n)
Question 11: merge two sorted lists
Show solution
Problem Statement: Merge two sorted linked lists and return a new sorted list.
Example:
Input: 1→2→4 , 1→3→4Output: 1→1→2→3→4→4Solution (Java):
public ListNode mergeTwoLists(ListNode a, ListNode b) { ListNode dummy = new ListNode(0), cur = dummy; while (a != null && b != null) { if (a.val <= b.val) { cur.next = a; a = a.next; } else { cur.next = b; b = b.next; } cur = cur.next; } cur.next = (a != null) ? a : b; return dummy.next;}Time Complexity: O(n + m)
Space Complexity: O(1)
Key insights from 2024 HSBC Online Assessment
- Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
- Technical MCQs: Strong emphasis on programming fundamentals, DBMS, OOPs, banking domain knowledge
- Coding Section: 1-2 coding problems in 30 minutes requires good problem-solving skills
- Time Management: 20-25 aptitude in 30 min + 15-20 technical in 30 min + 1-2 coding in 30 min
- Success Rate: Only 20-25% cleared assessment and advanced to interviews
- Platform: HSBC assessment platform
- Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, banking domain knowledge
HSBC 2024 interview experiences
Based on candidate experiences from 2024 HSBC interviews:
2024 Interview Process:
- Online Assessment (90 minutes): Aptitude (20-25) + Technical (15-20) + Coding (1-2)
- Technical Interview (45-60 minutes): Programming concepts, DBMS, OOPs, banking domain knowledge, problem-solving
- 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 HSBC’s business model and banking services
For detailed interview experiences, visit HSBC Interview Experience page.
Preparation tips for HSBC 2024 pattern
- Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
- Technical Fundamentals: Strong understanding of programming, DBMS, OOPs concepts
- Banking Domain: Basic understanding of banking industry and HSBC services
- Practice Previous Year Papers: Solve HSBC assessment papers from 2020-2024 to understand patterns
- Time Management: Practice completing 20-25 aptitude questions in 30 minutes
- Coding Practice: Practice arrays, strings, basic algorithms
- Technical MCQs: Practice programming concepts, DBMS, OOPs, banking basics
- Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, banking interest
- Mock Tests: Take timed practice tests to improve speed and accuracy
- Banking Focus: Understand banking industry trends and HSBC’s services

