Upload Button Icon Add office photos

DBS Bank

Compare button icon Compare button icon Compare
3.8

based on 1.7k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

DBS Bank Software Developer Intern Interview Questions and Answers

Updated 7 Mar 2024

DBS Bank Software Developer Intern Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response
Round 1 - Coding Test 

The test was of 2 hours.
having 36 questions. and 2 major coding questions. questions of debugging, SQL, Aptitude, and Operating Systems were also there.
Overall it was tough if you don't have a good DSA understanding.

Interview questions from similar companies

Interview experience
4
Good
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 - Technical 

(2 Questions)

  • Q1. Question about the oops and other related
  • Q2. Oops concepts in details
  • Ans. 

    Oops concepts refer to Object-Oriented Programming principles like Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of objects to take on multiple forms.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the complex implementation details and showing only

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Standard Aptitude test

Round 2 - Coding Test 

Medium level question on graphs

Round 3 - Technical 

(2 Questions)

  • Q1. Matrix least sum path (dp)
  • Q2. Medium level question on Linked List
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Coding Test 

3 DSA questions were asked

I applied via Approached by company and was interviewed in Jan 2022. 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 

The questiona all are from aptitude

Round 3 - Coding Test 

Some technical medium range questions asked

Round 4 - Technical 

(3 Questions)

  • Q1. Main questions are from data structure
  • Q2. Some questions are from java
  • Q3. Some personal questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Juste be confident because the questions are not that tricky

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

There were around 10 MCQS and 2 coding questions.  The MCQs mainly had questions related to DBMS and OOPs. There were also questions related to error debugging and give the output of a segment of code. Questions in DBMS were related to SQL commands. The test duration was from 5:30 to 7 pm. There were 2 questions in the coding round. The first one was based on a matrix and the second was based on dynamic programming.

  • Q1. Matrix Flip Bit

    You have been given a binary matrix ‘MAT’ of size ‘N’ * ’N’. Let ‘i’, ’j’ denote the row and column of the matrix, respectively. If ‘MAT’[i][j] is equal to 0, flip every 1 in the ‘i’th row ...

  • Ans. 

    I first applied brute force but the solution was exceeding the time limit so I looked for ways to avoid traversing every
    row and column of the matrix. Take the input of the matrix and in a map stored the location of every 0 in the original matrix. Then I traversed through the matrix whenever I encountered a 0 I traversed through its row and column and counted the number of ones. I also marked the row and column visited ...

  • Answered by CodingNinjas
  • Q2. Jump Game

    You have been given an array 'ARR' of ‘N’ integers. You have to find the minimum number of jumps needed to reach the last index of the array i.e ‘N - 1’ if at any index ‘i’ we can jump to...

  • Ans. Brute Force Approach
    • For each index, we find all possible locations we can jump to i.e if we are currently at an index ’i’ and ‘ARR[i]’ = k then we recursively find the answer for all indices from i + 1 to i + k and take the minimum of the answer and add 1 to it to find the minimum number of jumps to reach index last index from index ‘i’.
    • For example, Consider the array : 2, 3, 1, 4
    • We will have the following recursion tr...
  • Answered by CodingNinjas
Round 2 - Video Call 

(4 Questions)

Round duration - 45 minutes
Round difficulty - Easy

It was an interview round that took place over skype and it lasted for about 45 minutes. My interviewer was polite and gave me time to think for a few answers and was patient when there were technical difficulties. I was also asked to share my screen and show the working code for a few of the questions asked in the interview. I used an online compiler to do so (onlinegdb). Overall the interview went pretty decent with a mix of easy and tough questions.

  • Q1. SQL Query

    I was asked to write a query to select all the people who are below the age of 75 from a set of people.

  • Q2. OOPS

    What is the diamond problem?

  • Ans. 

    The diamond problem occurs when two superclasses of a class have a common base class. For example, in the following diagram, the TA class gets two copies of all attributes of Person class, this causes ambiguities.

  • Answered by CodingNinjas
  • Q3. Dijkstra's shortest path

    You have been given an undirected graph of ‘V’ vertices (labeled 0,1,..., V-1) and ‘E’ edges. Each edge connecting two nodes (‘X’,’Y’) will have a weight denoting the distance betw...

  • Ans. 

    I followed the same steps as given by the algorithm and also showed the output using some test cases.

  • Answered by CodingNinjas
  • Q4. Merge Sort

    Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

    Example :

    Merge Sort Algorithm -
    
    Merge sor...
  • Ans. 

    I had gone through the topic of time complexities really well before the interview. Whenever you practice coding do look at the time complexities of various standard problems like merge sort or bubble sort and also know all the possible ways to do them. Do all the standard coding problems and know their optimized solutions under every topic. Make sure you know your projects thoroughly. Be confident and don't beat aroun

  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This was a professional fitness round. It lasted for about 20-30 minutes. I was asked general questions about my future and career and the interviewer wanted to know what kind of a person I am and if I am fit for working in their company.

  • Q1. HR Questions

    First I was asked to introduce myself wherein I spoke about my hometown and my earlier education and also included my hobbies. Then I was asked why I wanted to work in that particular company t...

  • Ans. 

    Tip 1 : Be confident
    Tip 2 : Know everything there is to know about the company
    Tip 3 : Know about the recent technologies that are being adopted by various companies
    Tip 4 : Have answers prepared for questions like "What are your future plans" and "why do you want to work here?"
    Tip 5 : Know where your interests lie in the technical field. 

  • Answered by CodingNinjas
Round 4 - Video Call 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

This round was an HR round. Here I wasn't asked anything related to tech. Very general questions were asked and the purpose of this round was mainly to know if I had an aadhar card or had Indian citizenship or not or if have anyone related to me who was working in that company. Everyone who made it to this round was selected, this round wasn't to test your abilities but just to know if you can work in DB in India.

  • Q1. HR Questions

    I was asked to introduce myself and about my hobbies and hometown. They were very general questions. It was a fun and relaxed round.

  • Ans. 

    Tip 1 : When the interviewer asks you "How are you?" respond and ask them the same question
    Tip 2 : Be polite and confident

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Maulana Azad National Institute of Technology, Bhopal. Eligibility criteriaAbove 7 CGPADeutsche Bank interview preparation:Topics to prepare for the interview - Data structures, Algorithms, Object-oriented programming, Database management system, Flask and android development (project related), Problem-solving, Aptitude.Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Strengthen DSA skills initially, know the basics and understand the working of different data structures
Tip 2 : Learn to implement them and enhance your coding skills. Make mistakes and learn from them instead of just cramming everything before practicing. 
Tip 3 : To enhance coding skills, try your best to crack a question instead of giving up and looking at the solution..this will improve your problem-solving skills.
Tip 4 : It's a must to do the standard coding questions under every category of data structure and algorithms
Tip 5 : To study the topics and practice coding questions refer to GeeksforGeeks and regularly take part in coding contests at CodeForces.
Tip 6 : Be thorough with OOPs and DBMS for interview
Tip 7 : Have at least 2 projects in your resume and make sure you can answer the questions related to them.

Application resume tips for other job seekers

Tip 1 : Make sure your resume fits everything into a single page.
Tip 2 : Have at least 2 projects on your resume.
Tip 3 : Mention only those technical skills that you are confident in.
Tip 4 : Include an objective in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Timing - Late in the evening(7pm - 8 pm)
Virtual round, can give from home. 
Had to keep webcam on during the test. 
Tab switching was not allowed, and activity was monitored.

  • Q1. Given an array which is unsorted, check whether the elements are consecutive or not.

    E.g. : 1 2 3 4 returns True,  1 3 4 5 returns False

  • Ans. 

    - Used O(nLog(n)) sorting with merge sort

    - Traverse through the arrey, if a[i]+1 != a[i+1] return False

    - Else return true

  • Answered by CodingNinjas
Round 2 - Face to Face 

(2 Questions)

Round duration - 20 minutes
Round difficulty - Medium

Round in the morning, with 2 interviewers.
Questions based on Resume.

  • Q1. Longest Subarray Zero Sum

    Given an array arr of length N consisting of positive and negative integers, return the length of the longest subarray whose sum is zero.

    Input Format:
    The first line of input c...
  • Ans. Brute Force

    The brute force approach will be to calculate the sum for all possible subarrays. To calculate this, for each element(ith, where 0 <= i < N) in the array fix it as the first end of the subarray, initialize the subarray sum with zero, and iterate on the remaining elements(jth, where i <= j < N) of the array, keep adding the current element to the subarray sum and fix it as the second end of the ar...

  • Answered by CodingNinjas
  • Q2. Titanic fatality prediction problem

    Since I had Machine Learning as a skill in my resume, the interviewer asked me this question.

     

  • Ans. 

    Tip 1: Don't just say a model name. First start with a basic one, like, Linear Regression
    Tip 2: Then improve on the model, for eg, random forest regressor
    Tip 3: Make some insights : The number of passengers will remain the same, so more dataset cannot be gotten. Hence a stronger model will be prone to overfitting.

  • Answered by CodingNinjas
Round 3 - HR 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

In the afternoon, with 3 recruiters, 2 HRs and 1 project manager.

  • Q1. HR Round
  • Ans. 

    Tip 1: DO NOT LIE
    Tip 2: Give examples of where you have used it. E.g: projects developed.
    Tip 3: Mention courses you have done for it

    Tip 4: Always show you are eager to learn.
    Tip 5:"Even if I haven't used them yet because I was focussing on developing my Backend skills first, I would love to start learning it soon"

    Tip 6: Refrain from saying anything like doing higher studies. Companies do not with to utilize time in gro...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vellore Institute of Technology. I applied for the job as SDE - Intern in ChennaiEligibility criteria7 CGPA, No arrearsRoyal Bank of Scotland interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Graph Theory, Dynamic Programming, DBMS, Networks and Communication, Agile Software Development.Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Thoroughly prepare about the skills on your resume. Expect questions from the same.

Tip 2 : Know your projects well, be ready with outcome of project, Tools and Technology used, any hardships during the project that you overcame. Have atleast 2 projects.

Tip 3 : Practice DSA questions and all the commonly asked algorithms and puzzles

Application resume tips for other job seekers

Tip 1: Write your projects detailed - mostly in the following format: Name of the project, brief use case, tech stack used for development.


Tip 2: If you mention any Internships, use active verbs in the description - "Developed an Internal Dashboard which increased efficiency by 60%"

Tip 3: Mention your rank on sites like CodeForces, CodeChef(if they are good). Also add any extra-curriculars you were part of, Eg- "Vice President, Robotics Club ". Presents you as a well rounded individual

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Coding round, two Questions: one easy and one hard
The test was scheduled for 6 pm.

  • Q1. Second largest element in the array

    You have been given an array/list 'ARR' of integers. Your task is to find the second largest element present in the 'ARR'.

    Note:
    a) Duplicate elements ...
  • Ans. Simple solution

    The idea is to sort the array in decreasing order and return the second largest element in the array.

    1. Sort the array in decreasing order.
    2. We can create a function to sort the elements using a sorting algorithm such as quicksort or use inbuilt sorting functions.
    3. Traverse from index 1(0-based indexing) because the element at index 0 will clearly be the first largest and check whether duplicates of the larger ...
  • Answered by CodingNinjas
  • Q2. Ways To Make Coin Change

    You are given an infinite supply of coins of each of denominations D = {D0, D1, D2, D3, ...... Dn-1}. You need to figure out the total number of ways W, in which you can make a cha...

  • 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 by CodingNinjas

Interview Preparation Tips

Eligibility criteriaabove 7 CGPAStandard Chartered Bank interview preparation:Topics to prepare for the interview - OOPS, Data structure, DBMS, OS, Aptitude, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice questions regularly and sincerely
Tip 2 : Don't get demotivated by seeing other's preparaton.

Application resume tips for other job seekers

Tip 1 : Keep it neat and clean.
Tip 2 : Don't fake about projects just to give a good impression, you might get caught.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It was first entrance round which was conducted in online mode. It had 2 coding question and 10 mcqs.it was around 90 min in total and took place in evening at around 5 pm. 

  • Q1. Rooks Placing

    You are given an n×n chessboard. Rows and columns of the board are numbered from 0 to ‘n’-1. Cell (r,c) lies at the intersection of row number 'r' and column number ‘c’.

    Rook is a c...

  • Ans. 

    my solution was similar to this

    var allSolutions = _.memoize(function(n) {

    if (!n) return [];

    if (n === 1) return [[[true]]];
    var solutions = [];

    for (var i = 0; i < n; i++) {

    _.each(allSolutions(n-1), function(nMinusOneSolution){

    solutions.push(generateSolution(nMinusOneSolution, i));

    });

    }

    return solutions;

    });



    var generateSolution = function(nMinusOneSolution, i) {

    var n = nMinusOneSolution.length + 1;

    var newSet = [];

    for (var...

  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Medium

It was the first interview round conducted on skype. Each of the candidates were provided with the name of the interviewer and time slot in advance, and were expected to join to the link provided . The interviewer was really sincere and asked question straight to the point and asked me to write 2 3 codes for which he gave me questions and asked me to share my screen.

  • Q1. Puzzle

    Alok has three daughters. His friend Shyam wants to know the ages of his daughters. Alok gives him first hint.

    1) The product of their ages is 72.

     

    Shyam says this is not enough information Alok ...

  • Ans. 

    Tip 1 : Be calm think properly and answer

    Tip 2 : Share your approaches continuously

    Tip 3 : Even if you cannot get the final answer share your approach.

     

  • Answered by CodingNinjas
  • Q2. OOPS questions

    What is virtual class, abstract class and other concepts?

  • Ans. 

    Tip 1 : Go through oops properly
    Tip 2 : Concentrate on basics

  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

it was a technical and hr round .he asked me about my projects ,discussed my resume and questioned my skills and projects . He asked me why I wanted to join this company. Here also we were told about the result of previous round, interviewer and time slot in advance.

  • Q1. General Questions

    Why do you want to join this company? Tell m about your projects

  • Ans. 

    Tip 1 : be honest
    Tip 2 : just say what you feel

  • Answered by CodingNinjas
Round 4 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

He discussed my project and what all changes I would like to implement in near future and about resources and references We were given time slot and name of interviewer in advance.

  • Q1. General Questions

    Questions related to my project and what all fields I have interest in

    How will I manage a team if needed?

  • Ans. 

    Tip 1 : be calm smile be confident

    Tip 2 : think of the interviewer as a person you can be honest with and maintain a positive environment if you feel nervous tell him/her that you are nervous they will definitely support you.

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 7.5 cgpaDeutsche Bank interview preparation:Topics to prepare for the interview - data structures , algorithms , object oriented programming , dynamic programming , standard template library concepts in c++ , common algorithms ,competitive programming , web development basics, c and c++ languages in depth,discrete structures ,DBMS, mysql.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Have steadiness in competitive programming 
Tip 2 : Make your basics very strong
Tip 3 : Do some projects

Application resume tips for other job seekers

Tip 1 : Have a clear and developmental resume i.e mention your achievements year wise
Tip 2 : Try not to mention your primary educations details and achievements until they are something really extraordinary
Tip 3 : mention and elaborate your projects properly yet concisely.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Feb 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

This video call interview round was fairly based on the Resume. The interviewer went in detail about a couple of projects related to ML and Djikstra algorithm. The questions asked were very basic; based on the technology stack I used and why did I really choose it. He also asked me to present my screen and show the code I wrote for the project.

  • Q1. Dijkstra's shortest path

    You have been given an undirected graph of ‘V’ vertices (labeled 0,1,..., V-1) and ‘E’ edges. Each edge connecting two nodes (‘X’,’Y’) will have a weight denoting the distance betw...

  • Ans. Using Adjacency Matrix

    The idea is to maintain two arrays, one stores the visited nodes, and the other array stores the distance (element at index ‘i’ denotes the distance from node 0 to node ‘i’). We pick an unvisited minimum distance vertex, then update the distance of all its adjacent vertices considering the path from source to an adjacent vertex to pass through the picked minimum distance vertex. Repeat the process...

  • Answered by CodingNinjas
Round 2 - HR 

(1 Question)

Round duration - 10 Minutes
Round difficulty - Easy

This was a typical round by HR. There were only 5 students shortlisted for this round so it wasn't an eliminator round. The straight strategy followed by HR was to understand why I have shifted to the IT field from Civil engineering and how keen I am to continue in this field and not exit later.

  • Q1. Basic HR Questions

    Who is your role model?

    What are your hobbies?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in ChennaiEligibility criteriaNo criteriaStandard Chartered Bank interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Machine Learning, Data Science, Probability, Dynamic ProgrammingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Have at least 2-3 projects in your which you can talk about confidently and be able to answer all the questions asked (and also be able to show the code if asked for).
Tip 2 : Advanced concepts like Dynamic programming and Graphs can be useful for the coding tests.

Application resume tips for other job seekers

Tip 1 : Make sure to include all the relevant projects with crisp and brief points.
Tip 2 : I felt the extracurricular activities mentioned on the resume had some weightage and HR probably look for that as well.

Final outcome of the interviewSelected

DBS Bank Interview FAQs

How many rounds are there in DBS Bank Software Developer Intern interview?
DBS Bank interview process usually has 1 rounds. The most common rounds in the DBS Bank interview process are Coding Test.

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
 • 608 Interviews
IndusInd Bank Interview Questions
3.6
 • 575 Interviews
Yes Bank Interview Questions
3.8
 • 408 Interviews
Deutsche Bank Interview Questions
3.9
 • 353 Interviews
View all

DBS Bank Software Developer Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Associate
941 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Senior Associate
802 salaries
unlock blur

₹11 L/yr - ₹38 L/yr

Analyst
684 salaries
unlock blur

₹5.3 L/yr - ₹20 L/yr

Assistant Vice President
405 salaries
unlock blur

₹19.5 L/yr - ₹50 L/yr

Assistant Manager
344 salaries
unlock blur

₹2.5 L/yr - ₹9.2 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview