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 Software Development Manager Interview Questions and Answers

Updated 12 Jul 2022

Standard Chartered Software Development Manager Interview Experiences

1 interview found

I applied via Referral and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. SPring boot:what's actuator?
  • Ans. 

    Actuator is a Spring Boot module that provides endpoints for monitoring and managing the application.

    • Actuator exposes various endpoints for monitoring and managing the application

    • It provides health, metrics, info, and other endpoints

    • These endpoints can be accessed via HTTP or JMX

    • Actuator can be configured to secure the endpoints with authentication and authorization

    • Actuator can also be extended to provide custom endpoi

  • Answered by AI
  • Q2. Is it better to have one monolithic application instead of several micro services in terms of resources?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Monolithic applications can be easier to develop and deploy, but can become difficult to maintain and scale as they grow.

    • Microservices can be more flexible and scalable, but require more resources and complexity to manage.

    • Consider factors such as team size, project scope, performance requirements, and future growth plans when deciding on architectur...

  • Answered by AI
  • Q3. Intermediate condition in lambda expression
  • Ans. 

    Intermediate condition in lambda expression

    • Lambda expressions can have intermediate conditions using the 'if' keyword

    • The condition is placed after the parameter list and before the arrow

    • Example: lambda x: x**2 if x > 0 else -1

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's technical and relevant. Easy to crack.

Skills evaluated in this interview

Interview questions from similar companies

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

3 coding que easy,med and hard

Round 2 - Technical 

(2 Questions)

  • Q1. Os related que What is kernel , OS types ,what happens after booting computr ,etc
  • Q2. Creat a array and print all elements , which database used for pdf storing sql or nosql
Round 3 - Technical 

(2 Questions)

  • Q1. OOps related que abstraction , inheritance , code it
  • Q2. Middel element of linked list
Round 4 - HR 

(2 Questions)

  • Q1. What challenges u faced in engineering?
  • Q2. Situational based questions
Round 5 - HR 

(2 Questions)

  • Q1. Why u choose to work deustch bank ?
  • Q2. Project related quw
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Coding Test 

Trapping rain water and median of two sorted array

Round 2 - Technical 

(2 Questions)

  • Q1. Oops and dbms questions?
  • Q2. Code question in Array and string?
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. Spring Boot Related Questions
  • Q2. Authentication handling in microservices
  • Ans. 

    Authentication handling in microservices involves securing communication between services and managing user access.

    • Implement token-based authentication for secure communication between microservices

    • Use OAuth or JWT for authentication and authorization

    • Centralize authentication logic in a separate service to avoid duplication

    • Implement role-based access control to manage user permissions

  • Answered by AI
  • Q3. Microservice design patterns
  • Q4. Java 8 map function
  • Ans. 

    The map function in Java 8 is used to transform each element of a stream using a given function.

    • Map function is a method in the Stream interface that applies a function to each element in the stream and returns a new stream with the transformed elements.

    • It is commonly used for converting or manipulating data in a stream without modifying the original data source.

    • Example: List numbers = Arrays.asList(1, 2, 3, 4, 5); Lis...

  • Answered by AI

Skills evaluated in this interview

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

Mcq+coding which are medium level questions

Round 2 - Technical 

(3 Questions)

  • Q1. Multiple inheritance allowed in java?
  • Ans. 

    No, multiple inheritance is not allowed in Java.

    • Java does not support multiple inheritance for classes to avoid the diamond problem.

    • However, multiple inheritance is allowed for interfaces in Java.

    • Example: class A extends B, C is not allowed, but interface X extends Y, Z is allowed.

  • Answered by AI
  • Q2. Diff btw static and final
  • Ans. 

    Static is used to define class-level variables and methods, while final is used to define constants and prevent inheritance or modification.

    • Static variables and methods belong to the class itself, while final variables cannot be changed once initialized.

    • Static members can be accessed without creating an instance of the class, while final members must be accessed through an instance.

    • Static variables are shared among all...

  • Answered by AI
  • Q3. What is data encapsulation?
  • Ans. 

    Data encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation hides the internal state of an object and only exposes the necessary functionalities through methods.

    • It helps in achieving data abstraction and information hiding.

    • Example: A class 'Car' encapsulates data like speed, color, and methods like accelerate() and brake().

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. What are company core values
  • Ans. 

    Company core values are the fundamental beliefs that guide the behavior and decisions of employees.

    • Integrity - acting with honesty and transparency in all dealings

    • Innovation - constantly seeking new and better ways to solve problems

    • Customer focus - prioritizing the needs and satisfaction of customers

    • Teamwork - collaborating effectively with colleagues to achieve common goals

  • Answered by AI

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is Overlaoding and overriding?
  • Ans. 

    Overloading is having multiple methods in the same class with the same name but different parameters. Overriding is implementing a method in a subclass that is already defined in the superclass.

    • Overloading allows multiple methods with the same name but different parameters in the same class.

    • Overriding involves implementing a method in a subclass that is already defined in the superclass.

    • Overloading is resolved at compi

  • Answered by AI
  • Q2. What are the Java features?
  • Ans. 

    Java features include object-oriented programming, platform independence, automatic memory management, and multithreading.

    • Object-oriented programming: Java supports classes and objects, allowing for modular and reusable code.

    • Platform independence: Java programs can run on any platform with the Java Virtual Machine (JVM).

    • Automatic memory management: Java uses garbage collection to automatically manage memory allocation ...

  • Answered by AI
  • Q3. What is abstrack class?
  • Ans. 

    Abstract class is a class that cannot be instantiated and may contain abstract methods.

    • Cannot be instantiated directly

    • May contain abstract methods that must be implemented by subclasses

    • Used to define a common interface for subclasses

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. System design , HLD, LLD , coding question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Island Perimeter and Number of Provinces. Basic Leetcode question

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Technical questions related to security

Standard Chartered Interview FAQs

How many rounds are there in Standard Chartered Software Development Manager interview?
Standard Chartered interview process usually has 1 rounds. The most common rounds in the Standard Chartered interview process are Technical.
What are the top questions asked in Standard Chartered Software Development Manager interview?

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

  1. Is it better to have one monolithic application instead of several micro servic...read more
  2. SPring boot:what's actuat...read more
  3. Intermediate condition in lambda express...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Standard Chartered interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

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
 • 583 Interviews
Bandhan Bank Interview Questions
3.7
 • 516 Interviews
Yes Bank Interview Questions
3.8
 • 409 Interviews
View all
Standard Chartered Software Development Manager Salary
based on 5 salaries
₹19.5 L/yr - ₹35 L/yr
44% less than the average Software Development Manager Salary in India
View more details
Team Lead
2.5k salaries
unlock blur

₹3 L/yr - ₹13 L/yr

Associate Manager
2.3k salaries
unlock blur

₹5.2 L/yr - ₹20 L/yr

Senior Officer
2.3k salaries
unlock blur

₹1.8 L/yr - ₹7.3 L/yr

Manager
2k salaries
unlock blur

₹7 L/yr - ₹28.2 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

5.0
Compare

ICICI Bank

4.0
Compare

HDFC Bank

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview