Upload Button Icon Add office photos
Engaged Employer

i

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

Standard Chartered Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Standard Chartered Software Developer Interview Questions and Answers

Updated 31 Jul 2024

10 Interview questions

A Software Developer was asked 11mo ago
Q. How do you call a REST API?
Ans. 

To call a REST API, you can use tools like Postman or code in languages like JavaScript or Python.

  • Use tools like Postman to make HTTP requests to the API endpoints

  • In programming languages like JavaScript, use libraries like Axios or Fetch to make API calls

  • Include necessary headers, parameters, and authentication tokens in the request

  • Handle the response data accordingly, whether it's JSON, XML, or other formats

A Software Developer was asked 11mo ago
Q. Explain Encapsulation.
Ans. 

Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

  • Encapsulation helps in hiding the internal state of an object and only exposing necessary functionalities.

  • It allows for better control over the data by preventing direct access from outside the class.

  • Encapsulation also helps in achieving data abstraction and information hiding.

  • Example: In a class representing a ca...

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 Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. Why are you leaving your current job?
Ans. 

I am looking for new challenges and growth opportunities.

  • Seeking a more challenging role

  • Looking for opportunities to learn and grow

  • Want to work with new technologies

  • Desire to work in a different industry

  • Seeking better work-life balance

A Software Developer was asked
Q. 

Palindromic Substrings Problem Statement

Find the total number of palindromic substrings in a given string STR.

Example:

Input:
"abbc"
Output:
5
Explanation:

The palindromic substrings are: ["a", "b...

Ans. 

Count the total number of palindromic substrings in a given string.

  • Iterate through each character in the string and expand around it to find palindromic substrings.

  • Use dynamic programming to store previously calculated palindromic substrings.

  • Consider both odd and even length palindromes while counting.

  • Example: For input 'abbc', palindromic substrings are ['a', 'b', 'b', 'c', 'bb']. Total count is 5.

What people are saying about Standard Chartered

View All
a senior manager
2w
Interview experience
I had recently went through an interview with sap labs. My first and 2nd round done. After manegerial round which is the 3rd round then HR became silent and gave no update. I tried to connect with the HR for 3 weeks and then one rejection email came which said i am rejected. I want to just express that HR should be more diligent in replying to emails and if they are rejecting some candidate then they should update them with the proper reason not by a system generated email.
Got a question about Standard Chartered?
Ask anonymously on communities.
A Software Developer was asked
Q. How can you find the 4th highest salary from a table in a database?
Ans. 

To find the 4th highest salary from a table in a database, you can use a SQL query with the ORDER BY and LIMIT clauses.

  • Write a SQL query to select distinct salaries from the table in descending order.

  • Use the LIMIT clause to retrieve the 4th row from the sorted list.

  • The query would look like: SELECT DISTINCT salary FROM table_name ORDER BY salary DESC LIMIT 3, 1

A Software Developer was asked
Q. 

Anagram Pairs Verification Problem

Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the ...

Ans. 

Check if two strings are anagrams of each other by comparing their sorted characters.

  • Sort the characters of both strings and compare them.

  • Use a dictionary to count the frequency of characters in each string and compare the dictionaries.

  • Ensure both strings have the same length before proceeding with comparison.

  • Handle edge cases like empty strings or strings with different lengths.

A Software Developer was asked
Q. 

Occurrence of Each Word: Problem Statement

You are given a string S consisting of several words. Your task is to count the number of times each word appears in string S. A word is defined as a sequence of ...

Ans. 

Count the occurrence of each word in a given string.

  • Split the string into words using spaces as delimiters.

  • Use a hashmap to store the count of each word.

  • Iterate through the words and update the count in the hashmap.

  • Output each unique word with its occurrence count.

Are these interview questions helpful?
A Software Developer was asked
Q. 

Mike and Mobile Problem Statement

Mike, a little boy who loves solving math problems, was playing with his mom's mobile phone. The mobile keypad includes 12 buttons: 10 digit buttons (0-9) and 2 non-digit ...

Ans. 

Mike can generate unique numbers by pressing mobile keypad buttons, following specific rules for adjacent presses.

  • Button Press Rules: Mike can press the same button or an adjacent one after the initial press.

  • Initial Choices: For N=1, he can choose any of the 10 digits (0-9), resulting in 10 unique numbers.

  • Adjacent Button Logic: For N=2, starting from any digit, he can press the same or adjacent digits, leading to ...

A Software Developer was asked
Q. 

Remove Duplicates Problem Statement

You are given an array of integers. The task is to remove all duplicate elements and return the array while maintaining the order in which the elements were provided.

E...

Ans. 

The task is to remove duplicates from an array while preserving the original order of elements.

  • Use a set to track seen elements and a list to store the result, ensuring duplicates are skipped.

  • Example: For input [1, 2, 2, 3, 1], the output should be [1, 2, 3].

  • Iterate through the array, adding elements to the result list only if they haven't been seen before.

  • This approach maintains the order of first occurrences of ...

🔥 Asked by recruiter 2 times
A Software Developer was asked
Q. 

Maximum Frequency Number Problem Statement

Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array.

If multipl...

Ans. 

Find the number with the highest frequency in an array, returning the first one in case of ties.

  • Count Frequencies: Use a hash map to count occurrences of each number in the array.

  • Track First Occurrence: Store the index of the first occurrence of each number to resolve ties.

  • Iterate Efficiently: Loop through the array once to build the frequency map and another pass to determine the maximum frequency.

  • Example: For in...

Standard Chartered Software Developer Interview Experiences

8 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain Encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and only exposing necessary functionalities.

    • It allows for better control over the data by preventing direct access from outside the class.

    • Encapsulation also helps in achieving data abstraction and information hiding.

    • Example: In a class representing a car, th...

  • Answered by AI
  • Q2. How to call rest API
  • Ans. 

    To call a REST API, you can use tools like Postman or code in languages like JavaScript or Python.

    • Use tools like Postman to make HTTP requests to the API endpoints

    • In programming languages like JavaScript, use libraries like Axios or Fetch to make API calls

    • Include necessary headers, parameters, and authentication tokens in the request

    • Handle the response data accordingly, whether it's JSON, XML, or other formats

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Sprig MVC, Spring boot and API

Skills evaluated in this interview

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 Feb 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

3 rounds of basic aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. Basic C, DSA, JAVA questions
Round 3 - Technical 

(1 Question)

  • Q1. Tell us about your projects, whats your interests are, then some technical questions in JAVA
Round 4 - HR 

(1 Question)

  • Q1. Basic HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa and one coding language, be concise with your answers and if you don't know anything be honest with them
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 - Coding Test 

Data structures and computer fundamentals

Round 3 - Technical 

(2 Questions)

  • Q1. Data structures
  • Q2. Medium leetcode

Interview Preparation Tips

Interview preparation tips for other job seekers - Data structures and projects
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 Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

You have to debug and correct the code given.

Round 2 - One-on-one 

(1 Question)

  • Q1. Fibonacci Series
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 Hour Basic Aptitude

Round 2 - Coding Test 

2 Coding questions on Stacks and Array

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

  • Q1. 

    Occurrence of Each Word: Problem Statement

    You are given a string S consisting of several words. Your task is to count the number of times each word appears in string S. A word is defined as a sequence of...

  • Ans. 

    Count the occurrence of each word in a given string.

    • Split the string into words using spaces as delimiters.

    • Use a hashmap to store the count of each word.

    • Iterate through the words and update the count in the hashmap.

    • Output each unique word with its occurrence count.

  • Answered by AI
Round 2 - Group Discussion 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    Check if two strings are anagrams of each other by comparing their sorted characters.

    • Sort the characters of both strings and compare them.

    • Use a dictionary to count the frequency of characters in each string and compare the dictionaries.

    • Ensure both strings have the same length before proceeding with comparison.

    • Handle edge cases like empty strings or strings with different lengths.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

  • Q1. 

    Palindromic Substrings Problem Statement

    Find the total number of palindromic substrings in a given string STR.

    Example:

    Input:
    "abbc"
    Output:
    5
    Explanation:

    The palindromic substrings are: ["a", "...

  • Ans. 

    Count the total number of palindromic substrings in a given string.

    • Iterate through each character in the string and expand around it to find palindromic substrings.

    • Use dynamic programming to store previously calculated palindromic substrings.

    • Consider both odd and even length palindromes while counting.

    • Example: For input 'abbc', palindromic substrings are ['a', 'b', 'b', 'c', 'bb']. Total count is 5.

  • Answered by AI
  • Q2. How can you find the 4th highest salary from a table in a database?
  • Ans. 

    To find the 4th highest salary from a table in a database, you can use a SQL query with the ORDER BY and LIMIT clauses.

    • Write a SQL query to select distinct salaries from the table in descending order.

    • Use the LIMIT clause to retrieve the 4th row from the sorted list.

    • The query would look like: SELECT DISTINCT salary FROM table_name ORDER BY salary DESC LIMIT 3, 1

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in ChennaiEligibility criteriaAbove 7 CGPAStandard Chartered Bank interview preparation:Topics to prepare for the interview - Data structures, Algorithms, Operating system, computer networks, DBMS, OOPSTime required to prepare for the interview - 1 yearInterview preparation tips for other job seekers

Tip 1 : Be confident 
Tip 2 : Focus on data structures and algorithms(if you have less than 6 months)
Tip 3 : Focus on competitive programming(if you have more than 6 months)
Tip 4 : Practice at least 200 questions of various topics on leetcode and also start doing contest on various platforms.

Application resume tips for other job seekers

Tip 1 : You shouldn't lie on your resume.
Tip 2 : Write only those projects about which you are confident.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in May 2021. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What challenges did u faced in your role
  • Ans. 

    I faced various challenges, including tight deadlines, evolving technologies, and team collaboration issues.

    • Tight deadlines: I had to deliver a complex feature in two weeks, which required prioritizing tasks and effective time management.

    • Evolving technologies: Adapting to new frameworks like React and integrating them into existing projects posed a learning curve.

    • Team collaboration: Miscommunication led to duplicated e...

  • Answered by AI
  • Q2. What is ur purpose of leaving ur ofz
  • Ans. 

    I am looking for new challenges and growth opportunities.

    • Seeking a more challenging role

    • Looking for opportunities to learn and grow

    • Want to work with new technologies

    • Desire to work in a different industry

    • Seeking better work-life balance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident stay strong

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 150 minutes
Round difficulty - Medium

For MCQ Round, we have 2 rounds:- 
1. Logical Reasoning (Window of 4 hours)
2. Mathematical Reasoning(Window of 4 hours)
The environment was fine. They gave an option of attempting a mock test in order to familiarize us with the environment

Logical Reasoning, in which there were 12 questions, and for each question we had a time limit of 75 seconds. There was a cut-off of 40 for the next round, and people who qualified were sent an e-mail with a link to continue with the process.

Numerical Reasoning, in my opinion, was the most challenging round. The questions were in a pair of 3 in which a table/bank statement was given and 3 questions were based on that. The questions were purely based on calculations and semi-subjective. The time given for the 1st question was 90 seconds and for the rest 2 questions, 75 seconds each

For Coding Round, 
120 minutes window(Test was of 90 minutes)
We have two questions
For the first question(30 Minutes)
For the second question(60 Minutes)
The tricky thing was we only had one attempt, i.e we were allowed to submit the solution only once.

  • Q1. 

    Maximum Frequency Number Problem Statement

    Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array.

    If multip...

  • Ans. 

    Find the number with the highest frequency in an array, returning the first one in case of ties.

    • Count Frequencies: Use a hash map to count occurrences of each number in the array.

    • Track First Occurrence: Store the index of the first occurrence of each number to resolve ties.

    • Iterate Efficiently: Loop through the array once to build the frequency map and another pass to determine the maximum frequency.

    • Example: For input [...

  • Answered by AI
  • Q2. 

    Mike and Mobile Problem Statement

    Mike, a little boy who loves solving math problems, was playing with his mom's mobile phone. The mobile keypad includes 12 buttons: 10 digit buttons (0-9) and 2 non-digit...

  • Ans. 

    Mike can generate unique numbers by pressing mobile keypad buttons, following specific rules for adjacent presses.

    • Button Press Rules: Mike can press the same button or an adjacent one after the initial press.

    • Initial Choices: For N=1, he can choose any of the 10 digits (0-9), resulting in 10 unique numbers.

    • Adjacent Button Logic: For N=2, starting from any digit, he can press the same or adjacent digits, leading to 36 co...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

The timing was around 1 pm and the whole interview went for about 40 minutes.
The interviewer first went through my resume and asked me to introduce myself. After my introduction, he asked me about my projects mentioned in the resume. In the introduction itself, I told him that I am interested in competitive programming and preparing for ICPC. He then asked me about my preparation for ICPC. He then asked me some questions from OOPS. I was then asked 1 simple CP problem. The interviewer also asked about situation-based problems. As I previously mentioned about Competitive Programming, he asked how this will help in adding value to the company.

  • Q1. 

    Remove Duplicates Problem Statement

    You are given an array of integers. The task is to remove all duplicate elements and return the array while maintaining the order in which the elements were provided.

    ...

  • Ans. 

    The task is to remove duplicates from an array while preserving the original order of elements.

    • Use a set to track seen elements and a list to store the result, ensuring duplicates are skipped.

    • Example: For input [1, 2, 2, 3, 1], the output should be [1, 2, 3].

    • Iterate through the array, adding elements to the result list only if they haven't been seen before.

    • This approach maintains the order of first occurrences of each ...

  • Answered by AI
Round 3 - Video Call 

Round duration - 10 minutes
Round difficulty - Easy

In this round interviewer basically asked about my project in detail and also asked about various technologies used in that project.

Round 4 - HR 

Round duration - 10 minutes
Round difficulty - Easy

We were asked about family background, location of the intern, any interest in startups (as they don’t want students who they hire also work with startups side by side), etc.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 7 CGPAStandard Chartered Bank interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Dynamic Programming, Graphs, Competitive Programming, DBMS, Computer Architecture, Python, C++Time required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Solve as many questions as possible
Tip 2 : Focus on Communication Skills
Tip 3 : Spend some time on resume building
Tip 4 : Give some mock interviews
Tip 5 : Read others experiences as it will give you an idea about the whole interview process
Tip 6 : Learn from failures and try not to repeat the same mistakes in the future
Tip 7 : Most importantly enjoy the process

Application resume tips for other job seekers

Tip 1 : Should not exceed 1 page
Tip 2 : Put only those things which you are confident that you can answer anything 
Tip 3 : Have some projects on your resume
Tip 4 : Select the template of your resume based on its readability
Tip 5 : Put things on your resume in a systematic manner(Don't create a mess)
Tip 6 : Take a look at other selected resumes as it will give an idea on what basis companies accept or reject the resumes

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I appeared for an interview before Mar 2016.

Interview Questionnaire 

2 Questions

  • Q1. Some technical questions were asked
  • Q2. They spring hibernate MVC flow and core java and Oracle connectivity questions

Interview Preparation Tips

Round: Technical + HR Interview
Experience: There was a Team manager and his junior for the interview

I applied via Campus Placement 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

Standard Chartered Interview FAQs

How many rounds are there in Standard Chartered Software Developer interview?
Standard Chartered interview process usually has 2-3 rounds. The most common rounds in the Standard Chartered interview process are Coding Test, Technical and Aptitude Test.
What are the top questions asked in Standard Chartered Software Developer interview?

Some of the top questions asked at the Standard Chartered Software Developer interview -

  1. what is ur purpose of leaving ur ...read more
  2. How to call rest ...read more
  3. Explain Encapsulat...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.8/5

based on 5 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 100%
View more
Standard Chartered Software Developer Salary
based on 215 salaries
₹15.8 L/yr - ₹26 L/yr
70% more than the average Software Developer Salary in India
View more details

Standard Chartered Software Developer Reviews and Ratings

based on 23 reviews

3.6/5

Rating in categories

3.2

Skill development

4.1

Work-life balance

3.1

Salary

3.7

Job security

3.5

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 23 Reviews and Ratings
Team Lead
2.5k salaries
unlock blur

₹4.1 L/yr - ₹13.3 L/yr

Associate Manager
2.4k salaries
unlock blur

₹5.4 L/yr - ₹20 L/yr

Senior Officer
2.3k salaries
unlock blur

₹1.8 L/yr - ₹7.2 L/yr

Manager
2.1k salaries
unlock blur

₹7.6 L/yr - ₹30 L/yr

Senior Manager
2k salaries
unlock blur

₹14 L/yr - ₹45 L/yr

Explore more salaries
Compare Standard Chartered with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.7
Compare

Kotak Mahindra Bank

3.7
Compare
write
Share an Interview