Upload Button Icon Add office photos

Filter interviews by

State Bank of India Software Developer Interview Questions and Answers

Updated 31 Oct 2022

State Bank of India Software Developer Interview Experiences

2 interviews found

I applied via Company Website and was interviewed before Oct 2021. 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. Design patterns that you have followed in your past projects.
  • Ans. 

    I have followed the MVC, Singleton, and Factory design patterns in my past projects.

    • MVC pattern for separating concerns and improving maintainability

    • Singleton pattern for ensuring only one instance of a class is created

    • Factory pattern for creating objects without exposing the instantiation logic

  • Answered by AI
  • Q2. How to secure the applications?
  • Ans. 

    Applications can be secured by implementing various security measures such as authentication, authorization, encryption, and regular updates.

    • Implement strong authentication mechanisms such as multi-factor authentication

    • Use authorization to restrict access to sensitive data and functionalities

    • Encrypt sensitive data both in transit and at rest

    • Regularly update the application and its dependencies to patch security vulnera...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you are aware of the basics of OOP and the programming language of your preference.
You should be aware of the security threats. The computer science subjects should also be thoroughly understood.
And, the last, excellent communication skills with quick explanation to complete most of your questions in defined interview period.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions asked around 30 from asp.net, MVC, web api , c#, SQL etc
  • Q2. Some non tech questions also.

Interview Preparation Tips

Interview preparation tips for other job seekers - After selecting in state bank of india, I want to share my interview experience:

There were 5 persons in interview panel and they all asked questions both technical as well as non technical.
First they started from non technical questions. Like Why Madhubani painting is famous ? What is going on delhi university at that time contract teachers were on strike. Etc.
They asked about 30 questions from technical from asp.net, aap.net MVC, c#, SQL injection, XSS, CSRF, View vs Table, Function Vs SP, web services vs web api services, banking domain etc.
Overall it was a great experience. I answered almost 80 percentage questions. When interview result declared after 20 days, My name was there and I finally selected one of the big public sector bank. That is SBI. I would like to say Thank You Naukari.com.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Interview questions from similar companies

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

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

Round 1 - Coding Test 

1)Buy and sell stock
2)2 sum
3) system design
4) Elastic search
5) deployment

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

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

Round 1 - Coding Test 

1st round was Hirevue video assessment which had 5 questions .
1st - Tell us about yourself
2nd and 3rd were coding questions
4th was related to the 3rd coding question about its logic and alternate logic
5th was basically how are you fit for the role

Round 2 - Technical 

(4 Questions)

  • Q1. This was a technical interview First I was asked to write a code for dupl8cate elements in an array. Then he asked me about concepts of OOPS , DBMS, and DSA
  • Q2. About Constructors
  • Q3. Java interface and inheritance
  • Q4. HashMaps , Foriegn keys , OLTP , OLAP

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a strong grip on basic DS , OOPs and DBMS , SQL concepts
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops, basic ,SQL ,ado
Round 2 - Coding Test 

Curd operation with SQL connectivity

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

Simple algorithm question about sorting

Round 2 - Technical 

(2 Questions)

  • Q1. Algorith question about quick sort
  • Q2. Nlonn run time of the sort
  • Ans. 

    The time complexity of the quicksort algorithm is O(n log n).

    • Quicksort has an average time complexity of O(n log n).

    • The best case time complexity of quicksort is O(n log n) when the pivot element divides the array into two equal halves.

    • The worst case time complexity of quicksort is O(n^2) when the pivot element is the smallest or largest element in the array.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed in Jun 2023. There were 3 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 - Coding Test 

Ms office,Core Java , Tally , C,

Round 3 - Group Discussion 

In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide

Interview Preparation Tips

Interview preparation tips for other job seekers - Upgrade the skills

I applied via campus placement at MAEER's MIT College of Engineering, Pune and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is static in java?
  • Ans. 

    Static is a keyword in Java used to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

    • Static import is used to import static members of a class

  • Answered by AI
  • Q2. Write a program to replace consecutive same character by single '$' . for e.g. string='Heelo Wworldd'. Output- H$lo $orl$.
  • Ans. 

    The program replaces consecutive same characters in a string with a single '$'.

    • Iterate through each character in the string

    • Compare the current character with the next character

    • If they are the same, replace the next character with '$'

    • Continue until the end of the string

  • Answered by AI
  • Q3. Difference between Function overloading and Function overrriding
  • Ans. 

    Function overloading is having multiple functions with the same name but different parameters. Function overriding is having a derived class implement a method with the same name and parameters as a method in its base class.

    • Function overloading is used to provide different ways of calling a function with different parameters.

    • Function overriding is used to provide a specific implementation of a method in a derived class...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read all OOPs concept before going to interview. Prepare SQL also.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. LRU cache design
  • Ans. 

    LRU cache design involves maintaining a cache with limited capacity and removing the least recently used item when the cache is full.

    • Use a doubly linked list to maintain the order of items based on their usage.

    • Implement a hash map for fast access to items in the cache.

    • When a new item is accessed, move it to the front of the linked list to mark it as the most recently used.

    • When the cache is full, remove the item at the ...

  • Answered by AI
  • Q2. Current project

Skills evaluated in this interview

I applied via campus placement at Amrita Vishwa Vidyapeetham, Amritapuri Campus and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Coding Test 

The initial round was mixture of video interview and coding round.We will be asked 2 video interview questions and 2 coding questions

Round 2 - Technical 

(5 Questions)

  • Q1. Introduce yourself in five minutes
  • Q2. Tell about your projects and what are the challenges you faced while doing project
  • Q3. If you find any challenge while doing project what is your approch to overcome it
  • Q4. Till now in your career what is your biggest achievement
  • Q5. If you given a string in which numbers are combined how to seperate the longest alphabetical sequence
  • Ans. 

    The longest alphabetical sequence in a string of combined numbers can be separated using string manipulation and iteration.

    • Iterate through the string character by character

    • Check if the current character is alphabetical

    • If it is, start building a substring of alphabetical characters

    • If the next character is also alphabetical, add it to the substring

    • If the next character is not alphabetical, compare the length of the curre...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up bascis of coding
Be clear on what you speak

Skills evaluated in this interview

State Bank of India Interview FAQs

How many rounds are there in State Bank of India Software Developer interview?
State Bank of India interview process usually has 2 rounds. The most common rounds in the State Bank of India interview process are Technical and Resume Shortlist.
How to prepare for State Bank of India Software 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 State Bank of India. The most common topics and skills that interviewers at State Bank of India expect are Angular, REST API, .Net Core, Linux and PLSQL.
What are the top questions asked in State Bank of India Software Developer interview?

Some of the top questions asked at the State Bank of India Software Developer interview -

  1. Design patterns that you have followed in your past projec...read more
  2. How to secure the applicatio...read more
  3. Questions asked around 30 from asp.net, MVC, web api , c#, SQL ...read more

Tell us how to improve this page.

State Bank of India Software Developer Salary
based on 13 salaries
₹5 L/yr - ₹20 L/yr
49% more than the average Software Developer Salary in India
View more details
Deputy Manager
624 salaries
unlock blur

₹7.2 L/yr - ₹28 L/yr

Manager
530 salaries
unlock blur

₹10 L/yr - ₹34.9 L/yr

Assistant Manager
519 salaries
unlock blur

₹5.4 L/yr - ₹18 L/yr

Chief Manager
361 salaries
unlock blur

₹15 L/yr - ₹50 L/yr

Branch Manager
291 salaries
unlock blur

₹8 L/yr - ₹32.7 L/yr

Explore more salaries
Compare State Bank of India with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.8
Compare

Punjab National Bank

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