Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by SBS Team. If you also belong to the team, you can get access from here

SBS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

SBS SDE Interview Questions and Answers

Updated 2 Dec 2023

SBS SDE Interview Experiences

1 interview found

SDE Interview Questions & Answers

user image Nikita Khedar

posted on 2 Dec 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2023. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Your intro in detail
  • Ans. 

    I am a software engineer with expertise in SDE.

    • Proficient in programming languages like Java, C++, and Python

    • Experience in developing and maintaining software applications

    • Strong problem-solving and analytical skills

    • Familiarity with software development methodologies like Agile

    • Ability to work collaboratively in a team environment

  • Answered by AI
  • Q2. Any que for them
  • Q3. What keep u driving
Round 2 - Technical 

(1 Question)

  • Q1. Basic Data structures and algorithms

ServiceNow

Our employees have rated us 4.1 on AmbitionBox

Join a company where our employee's ratings speak volumes.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Reverse a string
  • Ans. 

    Function to reverse a given string.

    • Create an empty string to store the reversed string.

    • Iterate through the input string in reverse order and append each character to the new string.

    • Return the reversed string.

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

Infosys user image Piyush Bhati

posted on 5 Aug 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

  • Answered by AI
  • Q2. What is annotation in spring boot
  • Ans. 

    Annotations in Spring Boot are used to provide metadata about the application's components, helping Spring to understand how to manage them.

    • Annotations are used to configure Spring Boot components such as controllers, services, repositories, etc.

    • Annotations help Spring Boot to automatically detect and configure beans based on the annotations used.

    • Examples of annotations in Spring Boot include @RestController, @Service,

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

Skills evaluated in this interview

SDE Interview Questions & Answers

Infosys user image Anonymous

posted on 17 May 2022

I was interviewed in Apr 2022.

Round 1 - Coding Test 

(3 Questions)

Round duration - 180 minutes
Round difficulty - Hard

There was 1 round of 180 minutes which contains of 3 questions from DSA. the two question was of medium level but one question is of neither difficult nor medium level question based on tree

  • Q1. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

  • Ans. 

    Find the length of the longest strictly increasing subsequence in an array of integers.

    • Use dynamic programming to keep track of the longest increasing subsequence ending at each element.

    • Initialize an array to store the length of the longest increasing subsequence ending at each index.

    • Iterate through the array and update the length of the longest increasing subsequence for each element.

    • Return the maximum value in the ar...

  • Answered by AI
  • Q2. 

    Bipartite Graph Problem

    Check whether a given graph is bipartite or not. Return true if the graph's vertices can be divided into two independent sets, ‘U’ and ‘V’, such that every edge (‘u’, ‘v’) either c...

  • Ans. 

    Check if a given graph is bipartite by dividing vertices into two independent sets.

    • Use BFS or DFS to traverse the graph and assign colors to vertices to check for bipartiteness.

    • If an edge connects vertices of the same color, the graph is not bipartite.

    • Return true if all edges connect vertices of different colors, else return false.

  • Answered by AI
  • Q3. 

    Count Inversions Problem Statement

    Given an integer array ARR of size N containing all distinct values, determine the total number of inversions present in the array.

    An inversion is defined for a pair o...

  • Ans. 

    Count the total number of inversions in an integer array.

    • Iterate through the array and for each pair of elements, check if the conditions for inversion are met.

    • Use a nested loop to compare each element with all elements to its right.

    • Keep a count of the inversions found and return the total count at the end.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Medium

In interview I was asked about some question related to Data structures , DBMS . Some output based question was asked and 2 coding problems was given to solve.

  • Q1. 

    Return Subsets Sum to K Problem Statement

    Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'.

    Explanation:

    A subset of an array 'ARR' is a tupl...

  • Ans. 

    Given an array and an integer, return all subsets that sum to the given integer.

    • Use backtracking to generate all possible subsets of the array.

    • For each subset, check if the sum equals the given integer 'K'.

    • Print the subsets that satisfy the condition.

    • Example: For input [1, 2, 3] and K=3, subsets [1, 2] and [3] have sum 3.

  • Answered by AI
  • Q2. 

    Boundary Traversal of Binary Tree

    Given a binary tree of integers, your task is to print the boundary nodes of the binary tree in an anti-clockwise direction starting from the root node.

    Note:
    The boundary...
  • Ans. 

    Boundary traversal of a binary tree in anti-clockwise direction starting from the root node.

    • Implement a function to calculate the boundary traversal of a binary tree

    • Include nodes from left boundary, leaf nodes, and right boundary in sequence

    • Ensure only unique nodes are included in the output

    • Print the boundary nodes separated by single spaces for each test case

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE in PuneEligibility criteria60% in 12th & above 65% in B.techInfosys interview preparation:Topics to prepare for the interview - Data Structures, DBMS ,OOPS ,System Design, Algorithms, Dynamic Programming.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 - Practice At least 250 Questions of DS algo
Tip 2 - Do at least 2 application based projects
Tip 3 - Practice questions with optimized approaches

Application resume tips for other job seekers

Tip 1 : Have some application based projects on resume.
Tip 2 : Do not put false things on resume.
Tip 3 : Project should clear and crisp

Final outcome of the interviewRejected

Skills evaluated in this interview

SDE Interview Questions & Answers

Infosys user image Anonymous

posted on 23 Jan 2025

Interview experience
3
Average
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - Aptitude Test 

General aptitide test

Round 2 - Coding Test 

Basic coding test like DSA

Interview Preparation Tips

Interview preparation tips for other job seekers - just have basic preparation

SDE Interview Questions & Answers

Infosys user image Kartik Saroha

posted on 14 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

July online coding test consists of 3 question pretty medium level

Round 2 - Group Discussion 

July -economics ,good commumication skill checks

I applied via Company Website and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions which are of easy level

Round 2 - Technical 

(1 Question)

  • Q1. This round is full of fundasmental questions in dbms,c,oopsetc

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare more on basic fundamentals and practice programming .

I was interviewed in Sep 2016.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about Your project
  • Ans. 

    Developed a web-based project management tool for a software development company.

    • Used Agile methodology for development

    • Implemented features like task assignment, progress tracking, and team collaboration

    • Integrated with third-party tools like GitHub and Slack

    • Designed a user-friendly interface with responsive design

    • Deployed on AWS using EC2 and RDS

  • Answered by AI
  • Q2. Tell me about your CV!
  • Ans. 

    My CV showcases my experience in software development, including projects in Java, Python, and web development.

    • Experience in Java, Python, and web development

    • Worked on projects involving database management systems

    • Familiar with Agile development practices

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Tough! But manuplative ,yes manuplative ,I feel that your test scores are manuplated by the company! You score full marks in the test , but you are mechanical engineer you might not qualify for the next round! I say this as per ny experience . POINTER ,BRANCH and then score in this test describe the overall perfomance!
Tips: The company is totally for IT engineers if you are from other branch fonnot hope much, have a backup.
Duration: 1 hour 20 minutes
Total Questions: 80

Round: Technical + HR Interview
Experience: They Play with your minds,yes they do! Believe me donot show tough expressions!
Tips: Stay Calm ,they are not to scare you!

Skills: Technical, knowledge, gritt, Behavioural Skills
College Name: Atharva College Of Engineering

I was interviewed in May 2017.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your Project done in 4th year Btech
  • Ans. 

    Developed a web-based project management system for tracking tasks and deadlines.

    • Used HTML, CSS, JavaScript for front-end development

    • Implemented backend using Node.js and MongoDB for database management

    • Incorporated user authentication and authorization features

    • Utilized Agile methodology for project management

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 3 hours

Round: Technical + HR Interview
Experience: They asked several questions regarding all the bio data and some computer questions and some hr level questions

Round: Resume Shortlist
Experience: Resume got shortlisted and I got the Job that time I even can't believe that

College Name: ITER BHUBANESWSR

I was interviewed before Jun 2016.

Interview Questionnaire 

2 Questions

  • Q1. How to start an induction motor?
  • Ans. 

    An induction motor can be started by providing a rotating magnetic field.

    • Use a three-phase power supply to create a rotating magnetic field

    • The magnetic field induces a current in the rotor, causing it to rotate

    • The motor may require a starting capacitor or a starting winding to provide the initial torque

    • Once the motor reaches its rated speed, the starting mechanism can be switched off

  • Answered by AI
  • Q2. Tell me something about yourself?
  • Ans. 

    I am a passionate software engineer with 5 years of experience in developing web applications using various technologies.

    • Experienced in full stack web development

    • Proficient in languages like JavaScript, Python, and Java

    • Familiar with frameworks like React, Node.js, and Spring Boot

    • Strong problem-solving and analytical skills

    • Excellent team player with good communication skills

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was a wonderful experience overall. Giving an online test with my batch mates was amazing. I did the test very well and with ease.
Tips: Just enter the exam hall with confidence...
Duration: 1 hour 30 minutes
Total Questions: 90

Round: Technical + HR Interview
Experience: As I was strong in basics so I was able to answer this quest. He asked few related questions and I was able to give right answers.
Tips: Be strong in core subject basics and forget the rest of the subjects completely. They just want to see how much faithful you are with whatever you do. Moreover, just tell your name, state of birth, schooling, hobbies, etc(with free mind). They are just recruiters and not butchers, so stay calm as much as you can.

College Name: Maharaja Agrasen Institute Of Technology, Delhi
Contribute & help others!
anonymous
You can choose to be anonymous

SBS Interview FAQs

How many rounds are there in SBS SDE interview?
SBS interview process usually has 3 rounds. The most common rounds in the SBS interview process are Resume Shortlist, HR and Technical.
What are the top questions asked in SBS SDE interview?

Some of the top questions asked at the SBS SDE interview -

  1. Your intro in det...read more
  2. basic Data structures and algorit...read more
  3. any que for t...read more

Recently Viewed

INTERVIEWS

NexTurn

No Interviews

REVIEWS

Bridcodes Global

No Reviews

LIST OF COMPANIES

Ebullient Securities

Overview

LIST OF COMPANIES

Bridcodes Global

Overview

Tell us how to improve this page.

SBS SDE Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Sopra Steria

Rated 4 for Job Security by our employees on AmbitionBox

Interview Questions from Similar Companies

Infosys Interview Questions
3.6
 • 7.5k Interviews
FIS Interview Questions
3.9
 • 482 Interviews
3i Infotech Interview Questions
3.4
 • 143 Interviews
NSE.IT Interview Questions
3.6
 • 126 Interviews
Microland Interview Questions
3.5
 • 126 Interviews
View all
Module Lead
254 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
232 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
174 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Lead
154 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare SBS with

Temenos

3.2
Compare

Finastra

3.8
Compare

Infosys

3.6
Compare

Intellect Design Arena

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent