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 Full Stack Engineer Interview Questions and Answers

Updated 6 Nov 2023

Standard Chartered Full Stack Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Recruitment Consulltant

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 

Java OPPS, JavaScript, HTML, SQL Questions / 1 Hour

Round 3 - Technical 

(1 Question)

  • Q1. Project, Design, Tools, Framework, Coding Stuff
Round 4 - Technical 

(1 Question)

  • Q1. The most difficult challenges faced, situation-based approach, dealing with ambiguous requirements
  • Ans. 

    Dealing with ambiguous requirements and difficult challenges in a situation-based approach.

    • Identifying and clarifying ambiguous requirements through effective communication

    • Breaking down complex problems into smaller, manageable tasks

    • Adapting to changing priorities and tight deadlines

    • Collaborating with team members to brainstorm solutions

    • Using critical thinking and problem-solving skills to find innovative solutions

    • Mana...

  • Answered by AI
Round 5 - One-on-one 

(1 Question)

  • Q1. Puzzles, Probability, Maths BrainTeasers, Conflict Situation Response, Dare Stapes
Round 6 - HR 

(1 Question)

  • Q1. Standard Norms Question, Salary Expection, Reason for Change, culture fit questions

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Java 8 Features
  • Q2. Default Interface
  • Q3. Write code for Builder/Factory Pattern, basically anything other than Singleton
  • Ans. 

    Builder/Factory Pattern is used to create objects with complex initialization logic.

    • Builder Pattern separates the construction of a complex object from its representation.

    • Factory Pattern creates objects without specifying the exact class of object that will be created.

    • Builder Pattern is often used to create immutable objects with many optional parameters.

    • Factory Pattern is used when there is a need to create multiple i...

  • Answered by AI
  • Q4. Why is Redux used in React
  • Ans. 

    Redux is used in React to manage the application state in a predictable way.

    • Centralized state management for React applications

    • Predictable state changes with actions and reducers

    • Easier debugging and testing of state changes

    • Facilitates communication between components

  • Answered by AI
  • Q5. Second Highest Salary from Employee Table
  • Q6. Filter a List using Streams
  • Ans. 

    Filter a List using Streams in Java

    • Use the filter() method to apply a predicate to each element in the stream

    • Use collect() method to convert the stream back to a List

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); List filteredNames = names.stream().filter(name -> name.startsWith("A")).collect(Collectors.toList());

Answered by AI
Round 2 - Technical 

(7 Questions)

  • Q1. Write snippet for creating an Entity Class.
  • Ans. 

    Creating an Entity Class in Java

    • Define class with @Entity annotation

    • Add @Id annotation for primary key

    • Include fields with appropriate data types

  • Answered by AI
  • Q2. Different Types of Autowiring
  • Ans. 

    There are three types of autowiring in Spring: byType, byName, and constructor.

    • byType: Spring looks for a bean of the same type and injects it.

    • byName: Spring looks for a bean with the same name and injects it.

    • constructor: Spring looks for a constructor and injects the arguments.

  • Answered by AI
  • Q3. Lazy vs Eager Fetch
  • Ans. 

    Lazy fetch loads data only when needed, while eager fetch loads all related data upfront.

    • Lazy fetch is more efficient for performance as it only loads data when required.

    • Eager fetch can lead to performance issues by loading unnecessary data upfront.

    • Lazy fetch is the default behavior in JPA, while eager fetch needs to be explicitly specified.

    • Example: Lazy fetch can be used for loading a list of items in a shopping cart ...

  • Answered by AI
  • Q4. Transaction Management in Hibernate
  • Ans. 

    Transaction management in Hibernate ensures ACID properties for database operations.

    • Hibernate provides built-in transaction management support through Session interface.

    • Transactions can be managed programmatically using beginTransaction(), commit(), and rollback() methods.

    • Hibernate also supports declarative transaction management using annotations like @Transactional.

    • Transactions in Hibernate ensure Atomicity, Consiste...

  • Answered by AI
  • Q5. Attached Entity vs Detached Entity
  • Ans. 

    Attached entities are actively managed by the persistence context, while detached entities are no longer actively managed.

    • Attached entities are being managed by the persistence context and any changes made to them will be automatically synchronized with the database.

    • Detached entities are not being managed by the persistence context and changes made to them will not be automatically synchronized with the database.

    • Entiti...

  • Answered by AI
  • Q6. Write Snippet to create two beans
  • Ans. 

    Creating two beans in Java using Spring framework

    • Use @Component annotation to define a bean

    • Specify the bean name using @Component("beanName")

    • Use @Autowired annotation to inject one bean into another

  • Answered by AI
  • Q7. Sort an Employee HashMap
  • Ans. 

    Sort an Employee HashMap based on keys or values

    • Use TreeMap to automatically sort by keys

    • Use Comparator to sort by values

    • Convert HashMap to List and then sort

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Deutsche Bank Java Full Stack Developer interview:
  • Spring Framework
Interview preparation tips for other job seekers - First Round was conducted by HirePro

Skills evaluated in this interview

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

NAAAAAAAAAAAAAAAAAAAAa

Round 2 - Technical 

(2 Questions)

  • Q1. NAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  • Q2. NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa
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 - One-on-one 

(3 Questions)

  • Q1. What is transactional annotation in spring ?
  • Ans. 

    Transactional annotation in Spring is used to define the scope of a transaction.

    • Transactional annotation is used to mark a method or a class as transactional.

    • It ensures that all the operations within the annotated method or class are executed within a single transaction.

    • If an exception occurs, the transaction is rolled back.

    • Transactional annotation can be applied at the method level or class level.

    • It provides various a...

  • Answered by AI
  • Q2. What is cache in spring?
  • Ans. 

    Cache in Spring is a mechanism to store frequently accessed data in memory for faster retrieval.

    • Cache improves application performance by reducing the load on the database.

    • Spring provides caching support through annotations like @Cacheable, @CachePut, and @CacheEvict.

    • Caches can be configured with different eviction policies, such as LRU or FIFO.

    • Example: @Cacheable annotation can be used to cache the result of a method

  • Answered by AI
  • Q3. It stores the data in cache, where checks the dup

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

30 Technical MCQs, 1 medium level code

Round 2 - Technical 

(1 Question)

  • Q1. Java technical interview
Round 3 - HR 

(1 Question)

  • Q1. Compensation discussion and RISES values questions
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 Dec 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Not every process has aptitude but for IT departments and technical team ask for aptitude test

Round 3 - One-on-one 

(1 Question)

  • Q1. If fresher then you must know about the company and some banking terminology. If applying for specific role then you must carry knowledge of that subject.
Round 4 - HR 

(1 Question)

  • Q1. They will discuss about norms and salary structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Getting job for fresher is not that difficult but if applying for some specific role then you must have relevant experience and should carry subject knowledge.

Standard Chartered Interview FAQs

How many rounds are there in Standard Chartered Full Stack Engineer interview?
Standard Chartered interview process usually has 6 rounds. The most common rounds in the Standard Chartered interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Standard Chartered Full Stack Engineer interview?
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 MySQL, Javascript, Automation Testing, Android and Front End.
What are the top questions asked in Standard Chartered Full Stack Engineer interview?

Some of the top questions asked at the Standard Chartered Full Stack Engineer interview -

  1. The most difficult challenges faced, situation-based approach, dealing with amb...read more
  2. Puzzles, Probability, Maths BrainTeasers, Conflict Situation Response, Dare Sta...read more
  3. Project, Design, Tools, Framework, Coding St...read more

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
 • 583 Interviews
Bandhan Bank Interview Questions
3.7
 • 516 Interviews
Yes Bank Interview Questions
3.8
 • 409 Interviews
View all
Standard Chartered Full Stack Engineer Salary
based on 6 salaries
₹13.5 L/yr - ₹28 L/yr
98% more than the average Full Stack Engineer Salary in India
View more details

Standard Chartered Full Stack Engineer Reviews and Ratings

based on 3 reviews

2.4/5

Rating in categories

2.9

Skill development

1.9

Work-Life balance

3.0

Salary & Benefits

3.0

Job Security

2.5

Company culture

2.4

Promotions/Appraisal

2.8

Work Satisfaction

Explore 3 Reviews and Ratings
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