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 Specialist Developer Interview Questions and Answers

Updated 17 Jul 2024

Standard Chartered Specialist Developer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Tell me about the project
  • Q2. Kafka spring boot docker

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your work experiences

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Sep 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between hashmap and hash table
  • Ans. 

    HashMap is non-synchronized and allows null values, while HashTable is synchronized and does not allow null values.

    • HashMap is non-synchronized, meaning it is not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values for both keys and values, while HashTable does not allow null keys or values.

    • HashMap is generally preferred for non-thread-safe applications, while HashTable is used in mul

  • Answered by AI
  • Q2. Significance of equals and hashcode in java
  • Ans. 

    Equals method is used to compare the content of objects while hashcode method is used to generate a unique integer value for an object.

    • Equals method is used to compare the content of objects for equality.

    • Hashcode method is used to generate a unique integer value for an object.

    • Both methods are important for implementing proper object comparison and hashing in Java.

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. What motivates you to come to office
  • Ans. 

    I am motivated to come to the office by the opportunity to work on challenging projects, collaborate with talented colleagues, and contribute to the success of the team.

    • Challenging projects provide a sense of accomplishment and growth

    • Collaborating with talented colleagues allows for learning and innovation

    • Contributing to the success of the team fosters a sense of purpose and fulfillment

  • Answered by AI
  • Q2. Any scenario where you coached and mentored your collegue in previous organisation?
  • Ans. 

    Yes, I coached a junior developer on implementing design patterns in a project.

    • Provided guidance on how to apply design patterns in code

    • Reviewed their code and provided feedback for improvement

    • Encouraged them to ask questions and seek clarification

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - After applying we were sent a test link which consists of mcq's of Java8, spring boot etc. After that we were called for a walkin drive.There are 2 rounds. One technical and one managerial. Interviewers are friendly and asked basic questions on java and spring.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain event driven architecture of node.js
  • Ans. 

    Node.js uses event-driven architecture where events trigger callbacks to handle asynchronous operations.

    • Node.js uses event loop to handle asynchronous operations efficiently

    • Events are emitted by various objects in Node.js like HTTP servers, file system, etc.

    • Callbacks are registered to handle events and execute code when events occur

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Mental trauma and frustrated scenarios Even after solving 3 Link list coding problem and 20+ technical questions, and then following up about 20 times, and even after calls and emails, there has been no...
  • Q2. Even after solving 3 coding problem and 20+ technical questions, and then following up about 20 times, and even after calls and emails, there has been no response. Would it be appropriate for me to post ...

Interview Preparation Tips

Interview preparation tips for other job seekers - please don't attend the interview they will take you time only for show the hiring and fill up their database
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Given Salesforec Scenario Based Question To Create a 3 input Box and Query the details & Show in Ui

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Scenatio based basic Questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Salesforce Admin Test

Round 2 - Coding Test 

Trigger Scenarios for mixed DML error

Round 3 - Assignment 

Integration assignment

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

(2 Questions)

  • Q1. Questions on apache kafka, microservices scenario based queries
  • Q2. SQL queries on group by statement
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What do you mean by profile in spring boot..
  • Q2. Coding on hashmap and basic on access modifiers
  • Q3. Kafka partition n cluster
  • Q4. Write a hashcode method
  • Ans. 

    A hashcode method generates a unique integer value for an object based on its properties.

    • Override the hashCode() method in Java to generate a unique integer value for an object.

    • Use the properties of the object to calculate the hash code.

    • Ensure that equal objects have the same hash code.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic oops concepts

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com

Round 1 - HR 

(2 Questions)

  • Q1. R u interested in sales
  • Ans. 

    Yes, I am interested in sales as it allows me to understand customer needs and provide solutions.

    • I enjoy interacting with customers and understanding their requirements.

    • I am motivated by meeting sales targets and achieving success.

    • I believe in the value of building relationships with clients to drive business growth.

  • Answered by AI
  • Q2. Ready to relocation
  • Ans. 

    Yes, I am ready for relocation.

    • I am open to relocating for the right opportunity

    • I have experience moving for previous jobs

    • I am excited about the possibility of living in a new city

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design immutable class
  • Ans. 

    Immutable class is a class whose state cannot be modified after creation.

    • Make all fields private and final

    • Do not provide setter methods

    • Ensure that any mutable objects within the class are also immutable

  • Answered by AI
  • Q2. Difference between lock and sync
  • Ans. 

    Lock and sync are both mechanisms used in Java for thread synchronization, but they have different implementations and use cases.

    • Lock is a low-level synchronization mechanism provided by the java.util.concurrent.locks package, while sync (synchronized keyword) is a high-level synchronization mechanism provided by Java.

    • Lock provides more flexibility and control over synchronization compared to sync.

    • Lock can be used to c...

  • Answered by AI

Standard Chartered Interview FAQs

How many rounds are there in Standard Chartered Specialist Developer interview?
Standard Chartered interview process usually has 1 rounds. The most common rounds in the Standard Chartered interview process are One-on-one Round.

Tell us how to improve this page.

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
IDFC FIRST Bank Interview Questions
4.0
 • 615 Interviews
IndusInd Bank Interview Questions
3.6
 • 578 Interviews
Bandhan Bank Interview Questions
3.7
 • 512 Interviews
Yes Bank Interview Questions
3.8
 • 409 Interviews
View all
Standard Chartered Specialist Developer Salary
based on 22 salaries
₹16 L/yr - ₹32 L/yr
26% more than the average Specialist Developer Salary in India
View more details

Standard Chartered Specialist Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
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