i
Standard Chartered
Filter interviews by
I was interviewed before Oct 2020.
Round duration - 90 minutes
Round difficulty - Medium
Coding round, two Questions: one easy and one hard
The test was scheduled for 6 pm.
a) Duplicate elements ...
The idea is to sort the array in decreasing order and return the second largest element in the array.
Tip 1 : Practice questions regularly and sincerely
Tip 2 : Don't get demotivated by seeing other's preparaton.
Tip 1 : Keep it neat and clean.
Tip 2 : Don't fake about projects just to give a good impression, you might get caught.
I was interviewed before Sep 2020.
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)
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:
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.
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.
F(n) = F(n-1) + F(n-2),
Where, F(1) = F(2) = 1
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...
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...
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.
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 duration - 15 minutes
Round difficulty - Easy
It was a simple hr round and he asked me basic 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...
Tip 1 : Focus on Communication Skills
Tip 2 : Do atleast 2 projects
Tip 3 : Solve as many questions as possible.
Tip 1 : Put only those things which you are confident that you can answer anything .
Tip 2 : Have some projects on your resume.
I was interviewed before Sep 2020.
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.
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
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
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.
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 ...
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.
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...
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.
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.
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
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
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
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
I applied via Campus Placement and was interviewed before Oct 2021. There were 5 interview rounds.
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.
The coding test is solvable if you can do leet code problems.
Standard Chartered interview questions for popular designations
I was interviewed before Feb 2021.
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.
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...
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.
Who is your role model?
What are your hobbies?
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.
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.
Get interview-ready with Top Standard Chartered Interview Questions
I applied via Indeed and was interviewed in Mar 2021. There was 1 interview round.
I applied via Walk-in and was interviewed in Sep 2020. There was 1 interview round.
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...
I applied via Recruitment Consulltant and was interviewed before Apr 2021. There were 4 interview rounds.
I applied via Referral and was interviewed before Jul 2021. There were 2 interview rounds.
Abt self introduction
Self introduction and sales skills
Top trending discussions
Interview experience
based on 4.4k reviews
Rating in categories
Team Lead
2.5k
salaries
| ₹3 L/yr - ₹13 L/yr |
Associate Manager
2.3k
salaries
| ₹5.3 L/yr - ₹20 L/yr |
Senior Officer
2.3k
salaries
| ₹1.8 L/yr - ₹7 L/yr |
Manager
2k
salaries
| ₹7 L/yr - ₹28.3 L/yr |
Senior Analyst
1.9k
salaries
| ₹2 L/yr - ₹8.8 L/yr |
HSBC Bank
Citibank
ICICI Bank
HDFC Bank