Upload Button Icon Add office photos

DBS Bank

Compare button icon Compare button icon Compare
3.8

based on 1.8k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

DBS Bank Full Stack Developer Interview Questions and Answers

Updated 26 Oct 2022

DBS Bank Full Stack Developer Interview Experiences

2 interviews found

I applied via LinkedIn and was interviewed before Oct 2021. There were 5 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 - Assignment 

They gave set of 2 questions related to frontend and backend. And it was hackerrank where we need to solve it. Mine question was related to spring boot(global exception handler)and react(form implementation with some date and stock calculation)both are separated.

Round 3 - Technical 

(2 Questions)

  • Q1. They start with the set of general questions that is available for java full stack developer like questions from core java,jpa, spring boot, mictoservices, db,reactjs.
  • Q2. Questions was related to core java, spring framework spring core mostly and mvc, spring boot, jpa, db query etc
Round 4 - One-on-one 

(1 Question)

  • Q1. It was one to one discussion chitchat related to my experience in last company frankly it was more related to managerial round.
Round 5 - HR 

(1 Question)

  • Q1. Hr discssion was on pbone call. About my expectation, current package ,joining date and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice some project in your laptop on your own like for full stack developer we can do crud operations and then implement extra features to it. It will help at real time test.

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Its duration is of 90 minutes in the hackerearth platform with 30 mcqs, 1 coding question and 1 sql query. It is a Web Proctored Exam. As its a hackathon we can write the written test from 11th Feb 2021 to 21st Feb 2021(11:59 p.m).

  • Q1. 

    Query and Matrix Problem Statement

    You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types:

    Query 1: 1 R inde...
  • Ans. Brute Force

    A simple idea is to traverse the given row or column. If you come across a query that is of type 1 then swap 0 with 1 and vice-versa and for the query of type 2 initialize a variable ‘COUNT’ and increment count when you encounter ‘0’ and return ‘COUNT’.

     

    The steps are as follows:

     

    • If the type of query is 1.
      • If we have to consider row ‘R’ at the given ‘INDEX’
        • Run a loop for row ‘INDEX’  and every c...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 30 Minutes
Round difficulty - Medium

The interview is conducted over the Teams Call at around 5:40 on 27th February. It is combined of both TR and HR. It was one of the best experience that I had so far. The TR and HR are about 15 mins for every candidate. 

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from B V Raju Institute of Technology. I applied for the job as Fullstack Developer in HyderabadEligibility criteriaHaving 60% through out the academic year. Any CSE or IT can apply for it.DBS Bank interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating Systems, Java, MySql, Front End Technologies(Html, Css, Javascript)Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Have a Good Resume
Tip 2 : Have an understanding of Full Stack application development
Tip 3 : Have a passion to learn new technologies and drive major transformation

Application resume tips for other job seekers

Tip 1 : Keep your resume up to date for the role you are applying.
Tip 2 : Keep it short and sweet.
Tip 3 : Dont lie on your resume. You should have atleast the basic knowledge of the technologies which you have mentioned in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Full Stack Developer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Query and Matrix Problem Statement You are given a binary matrix ... read more
asked in Accenture
Q2. Find Duplicates in an Array Given an array ARR of size 'N', where ... read more
Q3. Most Frequent Non-Banned Word Problem Statement Given a paragraph ... read more
asked in CommVault
Q4. Count Substrings with K Distinct Characters Given a lowercase str ... read more
asked in MakeMyTrip
Q5. Tower of Hanoi Problem Statement You have three rods numbered fro ... read more

Interview questions from similar companies

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

(3 Questions)

  • Q1. What is transactional annotation in spring ?
  • Ans. 

    Transactional annotation in Spring is used to define the scope of a transaction.

    • Transactional annotation is used to mark a method or a class as transactional.

    • It ensures that all the operations within the annotated method or class are executed within a single transaction.

    • If an exception occurs, the transaction is rolled back.

    • Transactional annotation can be applied at the method level or class level.

    • It provides various a...

  • Answered by AI
  • Q2. What is cache in spring?
  • Ans. 

    Cache in Spring is a mechanism to store frequently accessed data in memory for faster retrieval.

    • Cache improves application performance by reducing the load on the database.

    • Spring provides caching support through annotations like @Cacheable, @CachePut, and @CacheEvict.

    • Caches can be configured with different eviction policies, such as LRU or FIFO.

    • Example: @Cacheable annotation can be used to cache the result of a method

  • Answered by AI
  • Q3. It stores the data in cache, where checks the dup

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

30 Technical MCQs, 1 medium level code

Round 2 - Technical 

(1 Question)

  • Q1. Java technical interview
Round 3 - HR 

(1 Question)

  • Q1. Compensation discussion and RISES values questions

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

It was in the morning. We had to complete 1 coding question in given time limit

  • Q1. 

    Most Frequent Non-Banned Word Problem Statement

    Given a paragraph consisting of letters in both lowercase and uppercase, spaces, and punctuation, along with a list of banned words, your task is to find th...

  • Ans. Brute Force
    1. To find the frequency of each word we need to extract the words from the paragraph.
    2. So we will convert all the punctuation to space in the paragraph and lowercase alphabets to uppercase.
    3. Now we can use the library function (e.g sstream in C++) to extract words from the paragraph in an array of strings say WORDS.
    4. We will iterate over WORDS and do:
      1. Iterate over the banned array and check if the current word is pre...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Hard

Interviewer was friendly. He asked 2 coding questions and some fullstack questions. 

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. Recursion

     

    1. The idea is to use recursion.
    2. For a particular coin, we have two options either include it or exclude it.
    3. If we include that coin, then calculate the remaining number that we have to generate so recur for that remaining number.
    4. If we exclude that coin, then recur for the same amount that we have to make.
    5. Our final answer would be the total number of ways either by including or excluding.
    6. There will be two edg...
  • Answered Anonymously
  • Q2. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Ans. Brute Force

    The idea here is to first, sort the critical POINTS with respect to their coordinate and height pairs. Make a pair of 'X1' and take a negative of the height for the building so that 'X1' pairs are sorted before 'X2' pairs. Create a dictionary keeping the heights as keys and as soon as a left edge of a building is encountered, we add that building to the dictionary with its height as the key. When we encounte...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaNo criteriaStandard Chartered Bank interview preparation:Topics to prepare for the interview - Ds, oops, graphs, trees, dyanamic programming, dbmsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice coding questions
Tip 2 : Try to research about previous interview questions

Application resume tips for other job seekers

Tip 1 : Prepare the resume as per the job
Tip 2 : Write in a clear manner

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Dec 2021. There were 4 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 - Aptitude Test 

Not every process has aptitude but for IT departments and technical team ask for aptitude test

Round 3 - One-on-one 

(1 Question)

  • Q1. If fresher then you must know about the company and some banking terminology. If applying for specific role then you must carry knowledge of that subject.
Round 4 - HR 

(1 Question)

  • Q1. They will discuss about norms and salary structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Getting job for fresher is not that difficult but if applying for some specific role then you must have relevant experience and should carry subject knowledge.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Coding Test 

Trapping rain water and median of two sorted array

Round 2 - Technical 

(2 Questions)

  • Q1. Oops and dbms questions?
  • Q2. Code question in Array and string?
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain event driven architecture of node.js
  • Ans. 

    Node.js uses event-driven architecture where events trigger callbacks to handle asynchronous operations.

    • Node.js uses event loop to handle asynchronous operations efficiently

    • Events are emitted by various objects in Node.js like HTTP servers, file system, etc.

    • Callbacks are registered to handle events and execute code when events occur

  • Answered by AI

I applied via Recruitment Consulltant and was interviewed in Nov 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Basic data structure related coding questions like creating a linked list and adding items to it median.
Max heap implementation.
Concurrency related questions.

Round 2 - Technical 

(1 Question)

  • Q1. Senior developer was taking the round, covering all design and architecture related questions. I was able to give a satisfactory solution.
Round 3 - Behavioral 

(1 Question)

  • Q1. Just some behavioural question along with a lil bit technical questions. Asked me about my current projects and problems faced, how i gave a proper solution and how i help my team to grow.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic DSA along with strong programming language knowledge is required to crack the interview.

I applied via campus placement at Banasthali Vidyapeeth Womens Institute For Studies In Development Oriented Management, Jaipur and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

It had more than 30 aptitude questions and 2 coding questions

Round 2 - One-on-one 

(1 Question)

  • Q1. It was totally a tech round all questions were from Data structure, dbms, java, computer networking

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and if you don't know any answer don't take time say it directly with confidence

DBS Bank Interview FAQs

How many rounds are there in DBS Bank Full Stack Developer interview?
DBS Bank interview process usually has 5 rounds. The most common rounds in the DBS Bank interview process are HR, Resume Shortlist and Assignment.
How to prepare for DBS Bank Full Stack Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at DBS Bank. The most common topics and skills that interviewers at DBS Bank expect are Agile Coaching, Automation Testing, Digital Marketing, Hibernate and JIRA.
What are the top questions asked in DBS Bank Full Stack Developer interview?

Some of the top questions asked at the DBS Bank Full Stack Developer interview -

  1. They start with the set of general questions that is available for java full st...read more
  2. Questions was related to core java, spring framework spring core mostly and mvc...read more
  3. It was one to one discussion chitchat related to my experience in last company ...read more

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.4k Interviews
IDFC FIRST Bank Interview Questions
4.0
 • 620 Interviews
IndusInd Bank Interview Questions
3.6
 • 587 Interviews
Yes Bank Interview Questions
3.8
 • 411 Interviews
Deutsche Bank Interview Questions
3.9
 • 361 Interviews
View all
DBS Bank Full Stack Developer Salary
based on 94 salaries
₹7 L/yr - ₹19 L/yr
34% more than the average Full Stack Developer Salary in India
View more details

DBS Bank Full Stack Developer Reviews and Ratings

based on 6 reviews

3.8/5

Rating in categories

3.0

Skill development

3.1

Work-life balance

4.1

Salary

4.7

Job security

3.9

Company culture

3.6

Promotions

3.3

Work satisfaction

Explore 6 Reviews and Ratings
Associate
940 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Senior Associate
821 salaries
unlock blur

₹13 L/yr - ₹41.5 L/yr

Analyst
685 salaries
unlock blur

₹5.3 L/yr - ₹17 L/yr

Assistant Vice President
410 salaries
unlock blur

₹19.5 L/yr - ₹50 L/yr

Assistant Manager
318 salaries
unlock blur

₹2.5 L/yr - ₹9 L/yr

Explore more salaries
Compare DBS Bank with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.8
Compare

Kotak Mahindra Bank

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