Upload Button Icon Add office photos

HSBC Group

Compare button icon Compare button icon Compare
4.0

based on 4.6k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

HSBC Group Trainee Software Engineer II Interview Questions and Answers

Updated 13 Mar 2021

HSBC Group Trainee Software Engineer II Interview Experiences

2 interviews found

I applied via Campus Placement and was interviewed in Feb 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Had a great experience with HSBC. there was a 5 rounds. First round was aptitude and reasoning and 2nd round was coding round .I cleared both the rounds. There was one formality round where they gave us so...

I applied via campus placement at Indian Institute of Technology (IIT), Chennai and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. General + Coding
  • Q2. General HR

Interview Preparation Tips

Round: Test
Experience: Programming Fundamentals There were following sections in this test: Aptitude, C, C++, Data Structures, Algorithms & Java (Core). Java questions were of quiet good level and they tested core java knowledge/concepts and programming fundamentals.

Tips: For this round I would suggest to attempt suitable number of questions from each section so as to clear section wise cutoff and give more time to java questions. Practice question on threads, multiprogramming, OOP concepts and some core in-built java functions, etc.
Duration: 1 hour 45 minutes
Total Questions: 70

Round: Test
Experience: This section comprised of 2 basic coding questions.

1st Question: Given two strings str1 and str2 and below operations that can performed on str1. Find minimum number of edits (operations) required to convert

Trainee Software Engineer II Interview Questions Asked at Other Companies

Q1. How to create table?
Q2. What waterfall model ?

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. OOP basic about the concept
  • Q2. Ms Sql based sql queries
Round 2 - Technical 

(2 Questions)

  • Q1. How exception handing in api
  • Ans. 

    Exception handling in API involves catching and handling errors that occur during API execution.

    • Use try-catch blocks to catch exceptions and handle them appropriately

    • Throw custom exceptions to provide meaningful error messages to API consumers

    • Use status codes to indicate the outcome of API requests (e.g. 200 for success, 400 for client errors, 500 for server errors)

    • Log exceptions to track errors and troubleshoot issues

    • ...

  • Answered by AI
  • Q2. Code for multiplication table
  • Ans. 

    Code to generate a multiplication table in a programming language

    • Use nested loops to iterate through rows and columns

    • Print the product of row and column for each cell

    • Consider formatting the output for better readability

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DP graphs strings it was good

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkded list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the list, updating pointers to reverse the direction

    • Return the new head of the reversed list

  • Answered by AI
  • Q2. Print fibonacci series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two variables initialized to 0 and 1

    • Loop through desired number of iterations, adding the previous two numbers to get the next number

    • Print or store each number in the series

  • Answered by AI

Skills evaluated in this interview

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

Quants, DSA, Logical, Analytical, OS, DBMS

Round 2 - Technical 

(2 Questions)

  • Q1. Please introduce yourself
  • Q2. Why UBS and what excited you
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Dwarkadas J Sanghvi College of Engineering, Mumbai and was interviewed in Nov 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Quant Topics: Interests, Sequence and Series along with Missing items, Time and Distance/Work,
Verbal Topics: Comprehension, Corrections, Grammar etc
CS Core Subjects: DSA, OOPS, DBMS, OS

Overall Test Difficulty was Easy-Medium

Round 2 - Coding Test 

System asked to choose one of the programming languages from C, C++ or Java. (Note: You can't change the language once confirmed!)
There were 7 different coding questions along with code. You just need to debug the code to get the correct output.
DSA: Graphs (Basics), Linked Lists, Conditional Statements, and Arrays (Stack and Queue)

Overall Difficulty was Medium (tbh, it depends on the practice you have done!)

Round 3 - Technical 

(1 Question)

  • Q1. 1. Tell me about yourself 2. What tech stack(s) you have worked on? Why? Why not others? 3. SQL queries based on joins, nesting and aggregations 4. Logical reasoning questions 5. Previous internships exper...
Round 4 - Behavioral interview 

(1 Question)

  • Q1. 1. Tell me about yourself 2. Why you do seek to join this company? 3. Are you comfortable working in shifts? If yes, how will you manage your time? 4. SQL queries 5. Logical question: Total number of squar...
Round 5 - HR 

(1 Question)

  • Q1. 1. Tell me about your day. Walk me through it. 2. If given a coding problem, what is your preferred language? Why? 3. Walk me through your best project in your resume. Why/How/When did you make it? 4. Tell...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the aptitude and DSA rounds with CS core subjects. Proofread your resume and study about the company, as it makes behavioral and HR questions easy to answer. Make them feel that you are the committed to your job, you will be assigned to and mainly to company.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General apti questions

Round 2 - Group Discussion 

Work-life balance and career progression

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Kharagpur and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - Coding Test 

The coding test comprised 4 questions, held on the Hackerank platform. The time-bound was 90 minutes. I would rate the questions as easy, medium, medium, and hard. You had to solve at least 3 and 80% of the test cases of the last question to qualify for the last round.

Round 2 - Technical 

(5 Questions)

  • Q1. Polymorphism and types of polymorphism.
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. Types include compile-time, runtime, and ad-hoc polymorphism.

    • Compile-time polymorphism is achieved through function overloading and templates.

    • Runtime polymorphism is achieved through inheritance and virtual functions.

    • Ad-hoc polymorphism is achieved through operator overloading and function templates.

    • Polymorphism allows for code reusability and flexibility ...

  • Answered by AI
  • Q2. Relational databases to which I said I had no idea.
  • Q3. Binary tree traversal quesiton.
  • Q4. Doubly linked list traversal question.
  • Q5. Asked about projects.
Round 3 - Technical 

(3 Questions)

  • Q1. Buy and sell stocks 1
  • Q2. Buy and sell stocks 2.
  • Q3. An easy puzzle in which the interviewer tries to trick me with my answer. Be confident.
Round 4 - HR 

(3 Questions)

  • Q1. String hashing problem, which I solved with KMP using O(n3) solution.
  • Q2. Contributions to open source communities.
  • Ans. 

    Contributed to open source communities by developing and maintaining projects.

    • Developed and maintained a Python package for data analysis and visualization

    • Contributed to a popular JavaScript library by fixing bugs and adding new features

    • Participated in open source hackathons and contributed to various projects

    • Provided support and guidance to new contributors in the community

  • Answered by AI
  • Q3. JEE Mains rank, KVPY rank.

I applied via Recruitment Consulltant and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on Core and advance Java like Collections, Java8, streams, Multithreading, Spring Boot concepts like annotations, security, codes and Microservices, Agile.
Round 2 - Technical 

(1 Question)

  • Q1. Technical + Managerial Round Technical questions on Java Spring Boot and Microservices. Managerial round questions as well.
Round 3 - HR 

(5 Questions)

  • Q1. Tell me about yourself.
  • Q2. Why are you looking for a change?
  • Q3. What are your salary expectations?
  • Q4. Share details of your previous job.
  • Q5. This was also the salary discuss round.

Interview Preparation Tips

Topics to prepare for Citicorp Senior Software Engineer interview:
  • Java
  • Core Java
  • Microservices
  • Spring Boot
  • Agile
Interview preparation tips for other job seekers - Keep the basic concepts upto date and clear.

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

  • Q1. 

    Word Break Problem Statement

    You are given a list of N strings called A. Your task is to determine whether you can form a given target string by combining one or more strings from A.

    The strings from A c...

  • Q2. 

    All Paths From Source Lead To Destination Problem Statement

    In a directed graph with 'N' nodes numbered from 0 to N-1, determine whether every possible path starting from a given source node (SRC) eventua...

Round 2 - Video Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

  • Q1. 

    Maximum Non-Adjacent Subsequence Sum

    Given an array of integers, determine the maximum sum of a subsequence without choosing adjacent elements in the original array.

    Input:

    The first line consists of an...
  • Q2. 

    Find All Anagrams Problem Statement

    Given a string STR and a non-empty string PTR, identify all the starting indices of anagrams of PTR within STR.

    Explanation:

    An anagram of a string is another string ...

Round 3 - Video Call 

Round duration - 45 Minutes
Round difficulty - Easy

First half of the interview was based on DBMS, OS and some puzzles. Second half was dedicated to projects related questions.

Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo criteriaAmerican Express interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Computer Networks, DBMS, SQL, OOPS, Operating System, Linux CommandsTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 200 leetcode easy to medium level questions
Tip 2 : Take part in hackathon to learn time management during coding test
Tip 3 : Make 2-3 good projects

Application resume tips for other job seekers

Tip 1 : It should be ATS friendly
Tip 2 : Do not be repetitive
Tip 3 : Be confident about techs you mention on your resume

Final outcome of the interviewSelected

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
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
IndusInd Bank Interview Questions
3.5
 • 594 Interviews
Citicorp Interview Questions
3.7
 • 565 Interviews
Wells Fargo Interview Questions
3.9
 • 564 Interviews
Yes Bank Interview Questions
3.7
 • 421 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
View all
Assistant Manager
2.6k salaries
unlock blur

₹4.5 L/yr - ₹14.5 L/yr

Manager
2.1k salaries
unlock blur

₹8 L/yr - ₹28.1 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹7.2 L/yr - ₹26 L/yr

Assistant Vice President
1.5k salaries
unlock blur

₹16.8 L/yr - ₹45 L/yr

Software Engineer
1.3k salaries
unlock blur

₹4.9 L/yr - ₹14.4 L/yr

Explore more salaries
Compare HSBC Group with

Standard Chartered

3.8
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.8
Compare

HDFC Bank

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