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
3.8

based on 4.4k Reviews

Filter interviews by

Standard Chartered Interview Questions, Process, and Tips for Freshers

Updated 27 Dec 2024

Top Standard Chartered Interview Questions and Answers for Freshers

  • Q1. Maximum Frequency Number Ninja is given an array of integers that contain numbers in random order. He needs to write a program to find and return the number which occurs ...read more
    asked in Software Developer interview
  • Q2. Most Frequent Word You are given a paragraph that may have letters both in lowercase and uppercase, spaces, and punctuation. You have also given a list of banned words. N ...read more
    asked in Full Stack Developer interview
  • Q3. Rat In A Maze You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The m ...read more
    asked in Software Analyst interview
View all 26 questions

Standard Chartered Interview Experiences for Freshers

Popular Designations

34 interviews found

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

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Software Analyst Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 170 minutes
Round difficulty - Easy

For MCQ Round, we have 2 rounds:- 
1. Logical Reasoning 
2. Mathematical Reasoning

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-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 it can be solved 2 times)
For the second question(60 Minutes)

  • Q1. Rat In A Maze

    You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered by CodingNinjas
  • Q2. Maximum Frequency Number

    Ninja is given an array of integers that contain numbers in random order. He needs to write a program to find and return the number which occurs the maximum times in the given inpu...

  • Ans. Brute Force Approach

    Here, we can simply run two loops. The outer loop picks all elements one by one and the inner loop finds the frequency of the picked element and compares it with the maximum present so far.

     

    Algorithm:

     

    • Declare 4 variables as ‘maxFrequency’ , ‘currentFrequency’ , ‘maxElement’ , ‘currentElement’ and initialize them with 0
    • Run a loop from ‘i’ = ‘0’ to ‘N’
      • Set ‘currentElement’ as arr[i] and ‘curr...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(3 Questions)

Round duration - 30 minutes
Round difficulty - Easy

It was an face to face round.There were 2 interviewers and they asked me coding question and some puzzles and some questions related to my project which was mentioned in my resume.

  • Q1. Nth Fibonacci Number

    Nth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula -

        F(n) = F(n-1) + F(n-2), 
        Where, F(1) = F(2) = 1
    

    Provided N you have...

  • Ans. Recursive Approach
    • In this approach, we use recursion and uses a basic condition that :
      • If ‘N’ is smaller than ‘1’(N<=1) we return ‘N’
      • Else we call the function again as ninjaJasoos(N-1) + ninjaJasoos(N-2).
    • In this way, we reached our answer.
    Space Complexity: O(n)Explanation:

    O(N),  where ‘N’ is the given number.  

    As recursion uses a stack of size ‘N’

    Time Complexity: O(2^n)Explanation:

    O(2^N), where ‘N’ i...

  • Answered by CodingNinjas
  • Q2. Puzzle

    25 horses problem

    There are 25 horses. What is the minimum number of races needed so you can identify the fastest 3 horses? You can race up to 5 horses at a time, but you do not have a watch.

    Egg Dropp...

  • Q3. 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
Round 3 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

It was basically a resume round Interviewer went through my resume throughly and asked me about the things mentioned in my resume.

  • Q1. Technical Questions

    She asked me why do haven't done java to which i replied i have good logics and good understanding of c++ .Learning java is not difficult for me and i only have to learn syntax(be confid...

Round 4 - Telephonic Call 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

It was a simple hr round and he asked me basic questions

  • Q1. Basic HR Questions

    Some questions asked are-
    Why you want to join standard chartered?
    Any military background?
    Any political background?
    Are you willingly to relocate?
    About my family and what are there professi...

Interview Preparation Tips

Eligibility criteriaAbove 7CGPAStandard Chartered Bank interview preparation:Topics to prepare for the interview - C++,OOPS, Data Structures, Projects, machine LearningTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Focus on Communication Skills
Tip 2 : Do atleast 2 projects
Tip 3 : Solve as many questions as possible.

Application resume tips for other job seekers

Tip 1 : Put only those things which you are confident that you can answer anything .
Tip 2 : Have some projects on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Standard Chartered Software Analyst Interview Questions and Answers

Q1. Maximum Frequency NumberNinja is given an array of integers that contain numbers in random order. He needs to write a program to find and return the number which occurs the maximum times in the given input. He needs your help to solve this ... read more
View answer (2)

Software Analyst Interview Questions asked at other Companies

Q1. Merge IntervalsYou are given N number of intervals, where each interval contains two integers denoting the start time and the end time for the interval. The task is to merge all the overlapping intervals and return the list of merged interv... read more
View answer (3)

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 14 Sep 2021

I was interviewed 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

    Ninja is given an array of integers that contain numbers in random order. He needs to write a program to find and return the number which occurs the maximum times in the given inpu...

  • Ans. 

    Step 1 : Make a Frequency array of size 26
    Step 2 : Iterate on the string from left to right and increase the frequency of the character by one
    Step 3 : Iterate on the Frequency array and find the max frequency and its corresponding character

  • Answered by CodingNinjas
  • Q2. Mike and Mobile

    Mike is a little boy who loves solving math problems. One day he was playing with his mom’s mobile. The mobile keypad contains 12 buttons { 10 digits(0-9) and 2 characters(‘*’ and ‘#’) }. M...

  • Ans. 

    Step 1 : We can solve this using recursion but it will be too slow
    Step 2 : So to improve the complexity, we need to use memoization so that we will not recalculate the same step again and again
    Step 3 : Recursion + Memoization = Dynamic Programming solution Passed all cases

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

    Ninja is playing with numbers but hates when he gets duplicate numbers. Ninja is provided an array, and he wants to remove all duplicate elements and return the array, but he has to maint...

  • Ans. 

    Step 1 : To mark the presence of an element size of the array, n is added to the index position arr[i] corresponding to array element arr[i].
    Step 2 : Before adding n, check if the value at index arr[i] is greater than or equal to n or not. If it is greater than or equal to, then this means that element arr[i] is repeating.
    Step 3 : To avoid printing repeating elements multiple times, check if it is the first repetition ...

  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

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.

  • Q1. Puzzle

    I told them that I have been doing competitive programming in C++, he asks why am I using only C++ and not any other language. I have done a project in python also so he asks me about the difficultie...

  • Ans. 

    Tip 1 : Be confident
    Tip 2 : Be thorough in the theory
    Tip 3 : You should know about everything you have mentioned in the resume like what it does, how it works etc.

  • Answered by CodingNinjas
Round 4 - HR 

(1 Question)

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.

  • Q1. General Questions

    1. Family background
    2. Location of the intern
    3. Any interest in startups (as they don’t want students who they hire also work with startups side by side)
    4. Willingness to relocate

  • Ans. 

    Tip 1 : Remain calm
    Tip 2 : Interviewers often ask about your strengths and weaknesses, so be prepared for those
    Tip 3 : Research the company
    Tip 4 : Make sure your answers are consistent with what’s on your resume

  • Answered by CodingNinjas

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

Top Standard Chartered Software Developer Interview Questions and Answers

Q1. Maximum Frequency NumberNinja is given an array of integers that contain numbers in random order. He needs to write a program to find and return the number which occurs the maximum times in the given input. He needs your help to solve this ... read more
View answer (3)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

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

The aptitude test is a bit different from everyone but its interesting. There are timed questions (instead of timed paper) and it judges you on all logical and reasoning thinking. Hold your nerves, youe gonna do great.

Round 3 - Coding Test 

The coding test is solvable if you can do leet code problems.

Round 4 - HR 

(1 Question)

  • Q1. The HR intereview was nice. She asked about likes dislikes, leadership qualities and situational question. Very positively taken interview.
Round 5 - One-on-one 

(1 Question)

  • Q1. It was a technicalround. Was asked questions on my project. Very approachable interviewer. Id suggest to answer calmly and just let them kjow if you dont know one.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm in the interview. They need to see how you are as a person, how enthusiastic you are more than how much you know.

Junior Software Engineer Interview Questions asked at other Companies

Q1. If there are 10 ball 2 red, 5 blue ,3 orange and one ball is picked randomly what is probability that the ball picked is red?
View answer (2)

Standard Chartered interview questions for popular designations

 Senior Manager

 (9)

 Software Developer

 (9)

 Associate Manager

 (8)

 Relationship Manager

 (6)

 Senior Analyst

 (6)

 Specialist

 (6)

 Team Lead

 (6)

 Business Development Manager

 (5)

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

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Get interview-ready with Top Standard Chartered Interview Questions

I applied via Indeed and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Excel formulas and brs
  • Q2. Transfer pricing
  • Q3. Bank reconciliation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and stumble with words it will create a bad impression

Senior Financial Analyst Interview Questions asked at other Companies

Q1. Diff between forecasting and budgeting, sale of assets and their effects in fs, provision for doubtful debt entry, unrealised/ realised gain and loss meaning, what are we check if there is any diff between budgeted and actuals like in 'ee c... read more
View answer (1)

I applied via Walk-in and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Your qualifications
  • Q2. Where is company particularly place
  • Q3. How much interested in account
  • Ans. 

    I am very interested in accountancy and have pursued it as my career choice.

    • I have always been fascinated by numbers and financial management.

    • I enjoy analyzing financial statements and identifying areas for improvement.

    • I have completed relevant education and training to become a Chartered Accountant.

    • I have gained practical experience through internships and work experience.

    • I am constantly learning and keeping up to dat...

  • Answered by AI
  • Q4. What expect in the salary per month
  • Q5. Your biggest supporter
  • Q6. Accounting features

Interview Preparation Tips

Interview preparation tips for other job seekers - Must and should be able to accounting features. Your biggest supporter is a stranger to me

Chartered Accountant Interview Questions asked at other Companies

Q1. What is meat by trading and profit and and loss account
View answer (4)

Software Developer Intern interview

user image Saral Education by Viomesh Singh

posted on 3 Dec 2021

Internship Trainee Interview Questions & Answers

user image Pratha jaiswal

posted on 14 Apr 2022

I applied via Recruitment Consulltant and was interviewed before Apr 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. In technical interview they ask about cybersecurity related questions and about project. Try to complete every module becouse interview was bit tricky so you should know about every module so you can give...
Round 3 - Technical 

(1 Question)

  • Q1. It was a lead technical interview so here they will ask about real life realted questions which can be anything but only realted to cybersecurity.
Round 4 - HR 

(7 Questions)

  • Q1. What is your family background?
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
  • Q4. Why are you looking for a change?
  • Q5. What are your strengths and weaknesses?
  • Q6. Where do you see yourself in 5 years?
  • Q7. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1- try to complete every modules
2- prectise of interview with the help of mirror communication.
3- don't do anything in one night of interview try to complete everything atleast before 2/3 bay ago of interview.

Internship Trainee Interview Questions asked at other Companies

Q1. Tell about your UG project? How will you design a table for 1 tonne load and what are all the consideration needed for it? Tell the Equations you know in strength of Materials? What are manufacturing processes involved to fabricate ball bea... read more
View answer (1)

I applied via Referral and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Abt self introduction

Round 2 - Group Discussion 

Self introduction and sales skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Talk with confidence
Self introduction and about sales skills

Business Development Officer Interview Questions asked at other Companies

Q1. How to recurring a team nd busnines how to achive your target nd goal if agent not giving business so what is your next staterdgy nd how to complite your target in every month if costumer not meeting your in front so what is your statergy t... read more
View answer (2)

Standard Chartered Interview FAQs

How many rounds are there in Standard Chartered interview for freshers?
Standard Chartered interview process for freshers usually has 2-3 rounds. The most common rounds in the Standard Chartered interview process for freshers are Aptitude Test, Technical and One-on-one Round.
How to prepare for Standard Chartered interview for freshers?
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 Standard Chartered. The most common topics and skills that interviewers at Standard Chartered expect are Banking, Communication Skills, Aml, Analytical and Banking Operations.
What are the top questions asked in Standard Chartered interview for freshers?

Some of the top questions asked at the Standard Chartered interview for freshers -

  1. 1.when customer gives request for stop payment? Would you do immediately or tak...read more
  2. What is the difference between a commercial bank and a investment ba...read more
  3. Flexibility to support the BAU when there is some additional suppo...read more
How long is the Standard Chartered interview process?

The duration of Standard Chartered interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Standard Chartered Interview Process for Freshers

based on 8 interviews in last 1 year

Interview experience

4.3
  
Good
View more

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
IndusInd Bank Interview Questions
3.6
 • 576 Interviews
Yes Bank Interview Questions
3.8
 • 409 Interviews
Citibank Interview Questions
3.9
 • 188 Interviews
Bank of Baroda Interview Questions
3.6
 • 102 Interviews
HSBC Bank Interview Questions
4.0
 • 31 Interviews
View all

Standard Chartered Reviews and Ratings

based on 4.4k reviews

3.8/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.6

Salary

3.8

Job security

3.6

Company culture

3.2

Promotions

3.4

Work satisfaction

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

₹3 L/yr - ₹13 L/yr

Associate Manager
2.3k salaries
unlock blur

₹5.3 L/yr - ₹20 L/yr

Senior Officer
2.3k salaries
unlock blur

₹1.8 L/yr - ₹7 L/yr

Manager
2k salaries
unlock blur

₹7 L/yr - ₹28.3 L/yr

Senior Analyst
1.9k salaries
unlock blur

₹2 L/yr - ₹8.8 L/yr

Explore more salaries
Compare Standard Chartered with

HSBC Bank

4.0
Compare

Citibank

3.7
Compare

ICICI Bank

4.0
Compare

HDFC Bank

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