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

Filter interviews by

Standard Chartered Angular Developer Interview Questions and Answers

Updated 29 Nov 2022

7 Interview questions

An Angular Developer was asked
Q. Tell me about CSS3 Flexbox.
Ans. 

CSS3 Flexbox is a layout module that provides a more efficient way to design and align elements in a container.

  • Flexbox allows for flexible and responsive layouts without the need for complex CSS hacks.

  • It uses a parent-child relationship where the parent element is the flex container and the child elements are flex items.

  • Flexbox provides properties such as flex-direction, justify-content, align-items, and align-sel...

An Angular Developer was asked
Q. Tell me about Observables.
Ans. 

Observables are a way to handle asynchronous data streams in Angular.

  • Observables are used extensively in Angular for handling events, HTTP requests, and other asynchronous operations.

  • They are similar to Promises, but can emit multiple values over time.

  • Observables can be transformed and combined using operators like map, filter, and merge.

  • They can also be subscribed to, which allows you to receive and handle the em...

Angular Developer Interview Questions Asked at Other Companies

asked in ONPASSIVE
Q1. How can you pass data between parent and child components?, what ... read more
asked in ONPASSIVE
Q2. What are life cycle hooks, and have you worked with them in your ... read more
asked in ONPASSIVE
Q3. What are the features of the latest TypeScript version you used i ... read more
Q4. What are the ways of improving performance of an application?
asked in TCS
Q5. JavaScript 1. let vs var 2. shallow copy vs deep copy 3. timeout ... read more
An Angular Developer was asked
Q. Tell me about Angular Routes.
Ans. 

Angular Routes are used to navigate between different components and views in an Angular application.

  • Routes are defined in the app-routing.module.ts file

  • Each route maps a URL path to a component

  • Routes can have parameters and child routes

  • Navigation between routes can be done using routerLink directive or programmatically using Router service

An Angular Developer was asked
Q. Tell me about Angular Components.
Ans. 

Angular Components are the building blocks of Angular applications.

  • Components are reusable and self-contained

  • They have a template, styles, and logic

  • They can communicate with other components using @Input and @Output decorators

  • Examples include navbar, sidebar, login form, etc.

What people are saying about Standard Chartered

View All
a senior manager
2w
Interview experience
I had recently went through an interview with sap labs. My first and 2nd round done. After manegerial round which is the 3rd round then HR became silent and gave no update. I tried to connect with the HR for 3 weeks and then one rejection email came which said i am rejected. I want to just express that HR should be more diligent in replying to emails and if they are rejecting some candidate then they should update them with the proper reason not by a system generated email.
Got a question about Standard Chartered?
Ask anonymously on communities.
An Angular Developer was asked
Q. Tell me about Angular pipes.
Ans. 

Angular pipe is a feature that allows transforming data before displaying it in the view.

  • Pipes are used to format, filter, and transform data.

  • They can be used in interpolation, property binding, and directive binding.

  • Built-in pipes include DatePipe, UpperCasePipe, and CurrencyPipe.

  • Custom pipes can be created using the @Pipe decorator.

An Angular Developer was asked
Q. Tell me about Angular Directives.
Ans. 

Angular directives are markers on a DOM element that tell AngularJS to attach a specified behavior to that DOM element.

  • Directives are used to create custom HTML tags that serve as new, reusable widgets.

  • They can be used to manipulate the DOM, add event listeners, and create reusable components.

  • Some built-in directives include ng-model, ng-repeat, and ng-show.

  • Directives can be restricted to only apply to certain typ...

An Angular Developer was asked
Q. Tell about Subjects in RXJS
Ans. 

Subjects are a type of Observable that can multicast to multiple Observers.

  • Subjects act as both an Observable and an Observer

  • They can emit values to multiple subscribers

  • There are four types of Subjects: BehaviorSubject, ReplaySubject, AsyncSubject, and Subject

  • Subjects can be used for event handling, state management, and more

Are these interview questions helpful?

Standard Chartered Angular Developer Interview Experiences

1 interview found

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 - Technical 

(7 Questions)

  • Q1. Tell about CSS3 Flexbox
  • Ans. 

    CSS3 Flexbox is a layout module that provides a more efficient way to design and align elements in a container.

    • Flexbox allows for flexible and responsive layouts without the need for complex CSS hacks.

    • It uses a parent-child relationship where the parent element is the flex container and the child elements are flex items.

    • Flexbox provides properties such as flex-direction, justify-content, align-items, and align-self to ...

  • Answered by AI
  • Q2. Tell about Angular Directives
  • Ans. 

    Angular directives are markers on a DOM element that tell AngularJS to attach a specified behavior to that DOM element.

    • Directives are used to create custom HTML tags that serve as new, reusable widgets.

    • They can be used to manipulate the DOM, add event listeners, and create reusable components.

    • Some built-in directives include ng-model, ng-repeat, and ng-show.

    • Directives can be restricted to only apply to certain types of...

  • Answered by AI
  • Q3. Tell about Angular pipe
  • Ans. 

    Angular pipe is a feature that allows transforming data before displaying it in the view.

    • Pipes are used to format, filter, and transform data.

    • They can be used in interpolation, property binding, and directive binding.

    • Built-in pipes include DatePipe, UpperCasePipe, and CurrencyPipe.

    • Custom pipes can be created using the @Pipe decorator.

  • Answered by AI
  • Q4. Tell about Angular Components
  • Ans. 

    Angular Components are the building blocks of Angular applications.

    • Components are reusable and self-contained

    • They have a template, styles, and logic

    • They can communicate with other components using @Input and @Output decorators

    • Examples include navbar, sidebar, login form, etc.

  • Answered by AI
  • Q5. Tell about Angular Routes
  • Ans. 

    Angular Routes are used to navigate between different components and views in an Angular application.

    • Routes are defined in the app-routing.module.ts file

    • Each route maps a URL path to a component

    • Routes can have parameters and child routes

    • Navigation between routes can be done using routerLink directive or programmatically using Router service

  • Answered by AI
  • Q6. Tell about Observables
  • Ans. 

    Observables are a way to handle asynchronous data streams in Angular.

    • Observables are used extensively in Angular for handling events, HTTP requests, and other asynchronous operations.

    • They are similar to Promises, but can emit multiple values over time.

    • Observables can be transformed and combined using operators like map, filter, and merge.

    • They can also be subscribed to, which allows you to receive and handle the emitted...

  • Answered by AI
  • Q7. Tell about Subjects in RXJS
  • Ans. 

    Subjects are a type of Observable that can multicast to multiple Observers.

    • Subjects act as both an Observable and an Observer

    • They can emit values to multiple subscribers

    • There are four types of Subjects: BehaviorSubject, ReplaySubject, AsyncSubject, and Subject

    • Subjects can be used for event handling, state management, and more

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you understand well you can answer the inderict questions pointed above

Skills evaluated in this interview

Interview questions from similar companies

I appeared for an interview before Mar 2016.

Interview Questionnaire 

2 Questions

  • Q1. Some technical questions were asked
  • Q2. They spring hibernate MVC flow and core java and Oracle connectivity questions

Interview Preparation Tips

Round: Technical + HR Interview
Experience: There was a Team manager and his junior for the interview

Angular Developer Interview Questions Asked at Other Companies

asked in ONPASSIVE
Q1. How can you pass data between parent and child components?, what ... read more
asked in ONPASSIVE
Q2. What are life cycle hooks, and have you worked with them in your ... read more
asked in ONPASSIVE
Q3. What are the features of the latest TypeScript version you used i ... read more
Q4. What are the ways of improving performance of an application?
asked in TCS
Q5. JavaScript 1. let vs var 2. shallow copy vs deep copy 3. timeout ... read more

I applied via Campus Placement and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is static in java?
  • Ans. 

    Static is a keyword in Java used to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

    • Static import is used to import static members of a class

  • Answered by AI
  • Q2. Write a program to replace consecutive same character by single '$' . for e.g. string='Heelo Wworldd'. Output- H$lo $orl$.
  • Ans. 

    The program replaces consecutive same characters in a string with a single '$'.

    • Iterate through each character in the string

    • Compare the current character with the next character

    • If they are the same, replace the next character with '$'

    • Continue until the end of the string

  • Answered by AI
  • Q3. Difference between Function overloading and Function overrriding
  • Ans. 

    Function overloading is having multiple functions with the same name but different parameters. Function overriding is having a derived class implement a method with the same name and parameters as a method in its base class.

    • Function overloading is used to provide different ways of calling a function with different parameters.

    • Function overriding is used to provide a specific implementation of a method in a derived class...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read all OOPs concept before going to interview. Prepare SQL also.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. LRU cache design
  • Ans. 

    LRU cache design involves maintaining a cache with limited capacity and removing the least recently used item when the cache is full.

    • Use a doubly linked list to maintain the order of items based on their usage.

    • Implement a hash map for fast access to items in the cache.

    • When a new item is accessed, move it to the front of the linked list to mark it as the most recently used.

    • When the cache is full, remove the item at the ...

  • Answered by AI
  • Q2. Current project

Skills evaluated in this interview

What people are saying about Standard Chartered

View All
a senior manager
2w
Interview experience
I had recently went through an interview with sap labs. My first and 2nd round done. After manegerial round which is the 3rd round then HR became silent and gave no update. I tried to connect with the HR for 3 weeks and then one rejection email came which said i am rejected. I want to just express that HR should be more diligent in replying to emails and if they are rejecting some candidate then they should update them with the proper reason not by a system generated email.
Got a question about Standard Chartered?
Ask anonymously on communities.
Round 1 - Group Discussion 

Topic wt is ms office

Round 2 - Assignment 

Eassys dscover the basic structure of all essaysand see what a goo d essay introduction and conclusion look like

Round 3 - Technical 

(1 Question)

  • Q1. Ppt presentations and techical skillsare the abilities and knowledge needed to performtastks

Interview Preparation Tips

Interview preparation tips for other job seekers - Straight from the job seekers themselves were sharing the best job search advice people have ever received
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

1)Buy and sell stock
2)2 sum
3) system design
4) Elastic search
5) deployment

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops, basic ,SQL ,ado
Round 2 - Coding Test 

Curd operation with SQL connectivity

Are these interview questions helpful?

I applied via Campus Placement and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

It had more than 30 aptitude questions and 2 coding questions

Round 2 - One-on-one 

(1 Question)

  • Q1. It was totally a tech round all questions were from Data structure, dbms, java, computer networking

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and if you don't know any answer don't take time say it directly with confidence
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. What is HTML?
  • Ans. 

    HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.

  • Answered Anonymously
  • Q2. What is CSS?
  • Ans. 

    Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in HTML or XML (including XML dialects such as SVG, MathML or XHTML). CSS describes how elements should be rendered on screen, on paper, in speech, or on other media.

  • Answered Anonymously
  • Q3. What is MySQL?
  • Q4. What is Java?
  • Q5. What is the full form of PHP?
  • Ans. 

    The full form of PHP is Hypertext Preprocessor. It was abbreviated previously as Personal Home Page. It is a programming language widely used to build web applications or websites.

  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - I am a passionate and eager-to-learn fresher in the field of web development and software technology. I have a solid foundation in several programming and development tools, including HTML, JavaScript, CSS, PHP, and MySQL, which I have explored through both academic projects and personal learning.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Joins, Jobs, stored procedures,cursors.

Round 2 - HR 

(1 Question)

  • Q1. What is my package

Standard Chartered Interview FAQs

How many rounds are there in Standard Chartered Angular Developer interview?
Standard Chartered interview process usually has 2 rounds. The most common rounds in the Standard Chartered interview process are Resume Shortlist and Technical.
What are the top questions asked in Standard Chartered Angular Developer interview?

Some of the top questions asked at the Standard Chartered Angular Developer interview -

  1. Tell about CSS3 Flex...read more
  2. Tell about Observab...read more
  3. Tell about Angular Rou...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.6k Interviews
HDFC Bank Interview Questions
3.9
 • 2.4k Interviews
Axis Bank Interview Questions
3.7
 • 1.6k Interviews
IDFC FIRST Bank Interview Questions
3.9
 • 749 Interviews
IndusInd Bank Interview Questions
3.5
 • 672 Interviews
Bandhan Bank Interview Questions
3.7
 • 616 Interviews
Yes Bank Interview Questions
3.7
 • 474 Interviews
View all
Team Lead
2.5k salaries
unlock blur

₹4.1 L/yr - ₹13.3 L/yr

Associate Manager
2.4k salaries
unlock blur

₹5.4 L/yr - ₹20 L/yr

Senior Officer
2.3k salaries
unlock blur

₹1.8 L/yr - ₹7.2 L/yr

Manager
2.1k salaries
unlock blur

₹7.6 L/yr - ₹30 L/yr

Senior Manager
2k salaries
unlock blur

₹14 L/yr - ₹45 L/yr

Explore more salaries
Compare Standard Chartered with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.7
Compare

Kotak Mahindra Bank

3.7
Compare
write
Share an Interview