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 DOT NET Developer Interview Questions and Answers

Updated 30 Oct 2023

HSBC Group DOT NET Developer Interview Experiences

1 interview found

DOT NET Developer Interview Questions & Answers

user image Lakshmi Chiru Meghana Behara

posted on 30 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Sep 2023. 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. Basics of dotnet
  • Q2. Basic questions in MVC

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Company Website and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Simple questions asked related to web forms

Interview Preparation Tips

Interview preparation tips for other job seekers - As soon as the interviewer joined, there was so much noise in the background that I couldn't understand what they were asking. It was so loud that I could hardly hear anything. This is not a professional way to conduct interview. The interview lasted hardly 10 minutes and it was very awkward for me. I couldn't even understand what I was saying, and I couldn't hear what they were saying either.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is cqrs pattern
  • Ans. 

    CQRS (Command Query Responsibility Segregation) is a design pattern that separates read and write operations in an application.

    • CQRS separates the responsibility of handling commands (write operations) from queries (read operations).

    • It helps in achieving better scalability, performance, and maintainability by allowing different models for reading and writing data.

    • Example: Using separate models for reading and writing da...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience.. Mostly focus on . Net and architectural questions

Prepare from c# corner design patterns and . Net

Skills evaluated in this interview

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

There were three coding questions.

Round 2 - Technical 

(5 Questions)

  • Q1. Could you provide a thorough explanation of the project?
  • Q2. OOps Concepts and question from the technical subjects
  • Q3. Why Spring Boot
  • Q4. JWT Authentication
  • Q5. Docker and Kubernetes
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. This was for internship. The first questions were 10 questions based on guessing output of c program
  • Q2. 2 coding questions with easy to medium difficulty based on strings and mathematical knowledge
Round 2 - Interview 

(1 Question)

  • Q1. This was a virtual interview round which had basic HR type questions.
Round 3 - Hackathon 

(1 Question)

  • Q1. This was code for good hackathon
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Project Architecture
Round 2 - Technical 

(1 Question)

  • Q1. Informatica tech questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Question Related to the DP and the Graph

Round 2 - Technical 

(2 Questions)

  • Q1. Kth Max Element in a Array
  • Ans. 

    Find the Kth maximum element in an array of strings.

    • Sort the array in descending order.

    • Return the element at index K-1.

  • Answered by AI
  • Q2. Coin Change and optimization through DP
  • Ans. 

    Coin change problem can be solved using dynamic programming to find the minimum number of coins needed to make a certain amount of change.

    • Use dynamic programming to build up solutions for smaller subproblems

    • Start by initializing an array to store the minimum number of coins needed for each amount from 0 to the target amount

    • Iterate through each coin denomination and update the array with the minimum number of coins need

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Project include in your Resume
  • Q2. HR common question

Skills evaluated in this interview

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy medium and hard questions

Round 2 - Technical 

(3 Questions)

  • Q1. DBMS OS STACKS QUEUES
  • Q2. NORMALISATION IN DBMS
  • Ans. 

    Normalization in DBMS is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a database into smaller, more manageable tables and defining relationships between them.

    • It helps in reducing data redundancy by storing data in a structured and organized manner.

    • Normalization also helps in improving data integrity by ensuring that data is consistent ...

  • Answered by AI
  • Q3. OUTPUT QUESTION IN JAVASCRIPT
Round 3 - HR 

(1 Question)

  • Q1. GENERIC HR STUFF

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with os dbms ooops system design and dsa

HSBC Group Interview FAQs

How many rounds are there in HSBC Group DOT NET Developer interview?
HSBC Group interview process usually has 2 rounds. The most common rounds in the HSBC Group interview process are Resume Shortlist and Technical.
What are the top questions asked in HSBC Group DOT NET Developer interview?

Some of the top questions asked at the HSBC Group DOT NET Developer interview -

  1. Basic questions in ...read more
  2. Basics of dot...read more

Tell us how to improve this page.

HSBC Group DOT NET Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

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.4k Interviews
IndusInd Bank Interview Questions
3.6
 • 589 Interviews
Citicorp Interview Questions
3.7
 • 562 Interviews
Wells Fargo Interview Questions
3.9
 • 560 Interviews
Yes Bank Interview Questions
3.8
 • 412 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
View all
Assistant Manager
2.6k salaries
unlock blur

₹4.5 L/yr - ₹15 L/yr

Manager
2.1k salaries
unlock blur

₹8 L/yr - ₹28.1 L/yr

Senior Software Engineer
1.5k salaries
unlock blur

₹7.2 L/yr - ₹28 L/yr

Assistant Vice President
1.5k salaries
unlock blur

₹16.9 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