Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Bajaj Finserv Team. If you also belong to the team, you can get access from here

Bajaj Finserv Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Bajaj Finserv Angular Frontend Developer Interview Questions and Answers

Updated 9 Jun 2025

Bajaj Finserv Angular Frontend Developer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What is Angular, and what do you know about its features? Why is Angular preferred over other frameworks?
  • Ans. 

    Angular is a powerful web application framework for building dynamic, single-page applications using TypeScript.

    • Component-based architecture: Angular applications are built using reusable components, promoting modularity and maintainability.

    • Two-way data binding: Changes in the UI automatically update the model and vice versa, simplifying data management.

    • Dependency injection: Angular's built-in dependency injection syst...

  • Answered by AI
  • Q2. What are the differences between JavaScript (JS) and TypeScript (TS)?
  • Ans. 

    TypeScript is a superset of JavaScript that adds static typing and other features for better development experience.

    • TypeScript is statically typed, while JavaScript is dynamically typed. Example: In TS, you can define a variable as 'let num: number = 5;'.

    • TypeScript supports interfaces and enums, which help in defining contracts and enumerations. Example: 'interface User { name: string; age: number; }'.

    • TypeScript provid...

  • Answered by AI
  • Q3. Some small code syntax and variable based.
  • Q4. Write a code to reverse the words.?
  • Ans. 

    This code snippet reverses the order of words in a given string using JavaScript and Angular.

    • Use the split() method to divide the string into an array of words. Example: 'Hello World'.split(' ') results in ['Hello', 'World'].

    • Reverse the array using the reverse() method. Example: ['Hello', 'World'].reverse() results in ['World', 'Hello'].

    • Join the reversed array back into a string using the join() method. Example: ['Worl...

  • Answered by AI
  • Q5. What are the different methods available for arrays, and what is the difference between the filter and map methods?
  • Ans. 

    Arrays in JavaScript have various methods for manipulation; filter and map serve different purposes for transforming data.

    • 1. Array methods include: push, pop, shift, unshift, slice, splice, forEach, map, filter, reduce, and more.

    • 2. The filter method creates a new array with elements that pass a test (predicate function). Example: [1, 2, 3].filter(x => x > 1) results in [2, 3].

    • 3. The map method creates a new array...

  • Answered by AI
  • Q6. What are pipes and what are the different types of pipes?
  • Ans. 

    Pipes in Angular transform data for display in templates, enhancing readability and formatting.

    • Pipes are simple functions that accept an input value and return a transformed value.

    • Angular provides built-in pipes like DatePipe, CurrencyPipe, and DecimalPipe.

    • Custom pipes can be created using the @Pipe decorator for specific transformation needs.

    • Example of DatePipe: {{ today | date:'fullDate' }} displays the full date for...

  • Answered by AI
  • Q7. What is data binding in the context of software development?
  • Ans. 

    Data binding is a technique that connects the UI to the data model, enabling automatic synchronization between them.

    • Types of data binding: One-way binding (e.g., displaying data) and two-way binding (e.g., form inputs).

    • Example of one-way binding: Using interpolation to display a variable in the template: {{ variableName }}.

    • Example of two-way binding: Using ngModel in forms to bind input values to a component property.

    • D...

  • Answered by AI
  • Q8. What are decorators in typescript?
  • Ans. 

    Decorators in TypeScript are special annotations that modify classes, methods, properties, or parameters at design time.

    • Decorators are functions prefixed with '@'.

    • They can be used to add metadata to classes and methods.

    • Common types include Class Decorators, Method Decorators, Property Decorators, and Parameter Decorators.

    • Example of a Class Decorator: @Component({ selector: 'app-root', templateUrl: './app.component.html...

  • Answered by AI
  • Q9. What is the difference between the `` and `` elements in HTML?
  • Ans. 

    The <b> element is for bold text, while <strong> indicates strong importance, often styled as bold.

    • <b> is used for stylistic bolding without implying importance. Example: <b>Bold Text</b>

    • <strong> conveys strong importance or emphasis. Example: <strong>Important Text</strong>

    • <strong> is semantically meaningful for accessibility tools, while <b> is purely presen...

  • Answered by AI
  • Q10. What is a container projection?
  • Ans. 

    Container projection allows components to project content into designated slots, enhancing flexibility in Angular applications.

    • Container projection is achieved using <ng-content> in Angular components.

    • It allows a parent component to pass content to a child component dynamically.

    • Example: A modal component can use container projection to display different content based on usage.

    • Multiple <ng-content> tags can ...

  • Answered by AI
  • Q11. What is the method to center a div using SCSS?
  • Ans. 

    Centering a div in SCSS can be achieved using various techniques like flexbox, grid, or margin auto.

    • Use Flexbox: Set display: flex; and justify-content: center; align-items: center; on the parent.

    • Example: .parent { display: flex; justify-content: center; align-items: center; } .child { width: 50%; }

    • Use Grid: Set display: grid; and place the child in the center.

    • Example: .parent { display: grid; place-items: center; } .c...

  • Answered by AI
  • Q12. What are the best practices for making a webpage responsive?
  • Ans. 

    Responsive web design ensures optimal viewing across devices by adapting layout and content to different screen sizes.

    • Use flexible grid layouts that adjust based on screen size, e.g., CSS Grid or Flexbox.

    • Implement media queries to apply different styles for various screen widths, e.g., @media (max-width: 600px) { ... }.

    • Utilize responsive images with the 'srcset' attribute to serve different image sizes based on device ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepared for JavaScript questions.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. What is the JavaScript code for finding repeating alphabets?
  • Ans. 

    Use JavaScript to find repeating alphabets in an array of strings.

    • Loop through each string in the array

    • For each string, loop through each character and check if it is repeated

    • Store the repeating alphabets in a separate array

  • Answered by AI
  • Q2. What are the Angular lifecycle hooks?
  • Ans. 

    Angular lifecycle hooks are methods that allow you to tap into specific points in a component's lifecycle.

    • ngOnChanges: Called when an input property changes

    • ngOnInit: Called once the component is initialized

    • ngDoCheck: Called during every change detection run

    • ngAfterContentInit: Called after content (ng-content) has been projected into the component

    • ngAfterContentChecked: Called after every check of the projected content

    • ng...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Even after the interview goes well, they still do not select candidates.

Angular Frontend Developer Interview Questions Asked at Other Companies

asked in Nihilent
Q1. How do you implement interfaces without methods?
asked in TCS
Q2. How can data be shared from one component to another?
Q3. Qus 1: What is template from and reactive Form and what is differ ... read more
asked in Infosys
Q4. What is lazy loading and how can we achieve this?
Q5. How do you pass data by routing to another page?

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the day time. I was asked the programming language of my choice. It was mostly focused on programming fundamentals. I was asked 2 questions based on Data Structures and Algorithms.

  • Q1. How can you detect a loop in a linked list?
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This round was mostly focused on my resume and projects.

  • Q1. Tell me about your projects.
  • Ans. 

    I worked on several projects, including a web app for task management and a machine learning model for sentiment analysis.

    • Developed a task management web app using React and Node.js, allowing users to create, update, and delete tasks.

    • Implemented a machine learning model using Python and scikit-learn to analyze customer reviews and predict sentiment.

    • Created a personal portfolio website to showcase my projects and skills...

  • Answered by AI
Round 3 - Face to Face 

Round duration - 30 minutes
Round difficulty - Easy

It was in the evening. I went to their office in Gurgaon. It was taken by one of the technology director who had a lot of experience. 
 

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in GurgaonAmerican Express interview preparation:Topics to prepare for the interview - Data structures and algorithms, Object-Oriented Programming System concepts, Database Management System, Operating System, Networking.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Do practice a lot of data structures questions as mostly questions in interviews are based on them. Also, do prepare for projects mentioned in your resume and skills which you have mentioned. Coding ninjas has a big hand in making my interview clear as I have taken a course from the coding Ninjas which helped me a lot to make my concepts clear.

Application resume tips for other job seekers

Keep it short and crisp. Go through it properly before the interview. Make sure that you haven't put anything in it that can cause you problems during the interview.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in May 2017.

Interview Questionnaire 

6 Questions

  • Q1. Can string class be extended
  • Ans. 

    Yes, the string class can be extended in most programming languages.

    • Inheritance can be used to extend the functionality of the string class.

    • By creating a new class that inherits from the string class, additional methods and properties can be added.

    • Extending the string class allows for customization and adding specific functionality to strings.

    • Example: In Python, the string class can be extended by creating a new class ...

  • Answered by AI
  • Q2. What are the implecit object in JSP
  • Ans. 

    Implicit objects in JSP are predefined objects that are available for use without any declaration or initialization.

    • Implicit objects in JSP include request, response, session, application, out, config, pageContext, page, exception, and others.

    • These objects provide access to various aspects of the JSP environment and can be used to perform common tasks.

    • For example, the request object allows access to HTTP request parame...

  • Answered by AI
  • Q3. How does hash map works
  • Ans. 

    A hash map is a data structure that uses a hash function to map keys to values.

    • Hash map stores key-value pairs

    • It uses a hash function to compute an index for each key

    • Collisions can occur when two keys hash to the same index

    • Hash maps provide fast access to values based on their keys

  • Answered by AI
  • Q4. Difference between string buffer and string builder
  • Ans. 

    StringBuffer and StringBuilder are both used to manipulate strings, but StringBuffer is thread-safe while StringBuilder is not.

    • StringBuffer is synchronized, making it safe for use in multi-threaded environments.

    • StringBuilder is not synchronized, making it faster but not thread-safe.

    • StringBuffer is preferred when multiple threads are involved, while StringBuilder is preferred for single-threaded scenarios.

    • Both classes p...

  • Answered by AI
  • Q5. What is MVC
  • Q6. What are the annotation used in RESTFULL web services
  • Ans. 

    Annotations used in RESTful web services

    • 1. @Path - Specifies the URI path for the resource

    • 2. @GET - Specifies that the method handles HTTP GET requests

    • 3. @POST - Specifies that the method handles HTTP POST requests

    • 4. @PUT - Specifies that the method handles HTTP PUT requests

    • 5. @DELETE - Specifies that the method handles HTTP DELETE requests

    • 6. @PathParam - Binds the value of a URI template parameter to a method paramete...

  • Answered by AI

Interview Preparation Tips

Skills: Java Application Development

Skills evaluated in this interview

What people are saying about Bajaj Finserv

View All
nandkishorsingh
Verified Icon
1w
works at
Bajaj Finserv
sales
Don’t sell a product. Solve a problem.
Got a question about Bajaj Finserv?
Ask anonymously on communities.

Interview Preparation Tips

Round: Technical Interview
Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
5 wer selected in this test who wer nw sent for interviews
TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
der wer min 2 technical rounds for each of them...max were 5

- You are given course dependencies
A->B,C
B->D
C->A
D->nothing
The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
After i wrote the code....he asked for all possible test cases
-Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
-Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
-In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
-A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
-There are some processes running at time T....and there are processes running at time T+30.
You have to find out
1)Which processes died at time T+30,which were alive at time T
2)Which are the new processes at time T+30,which were not there at time T
3)Which are the processes that were there at time T and are still running at time T+30
What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
-Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

There were 33 questions in total. The objective questions were simple.

  • Q1. 

    Sort Big List Dates Problem Statement

    Mary is an enthusiastic party-goer who struggles with remembering event dates. Help Mary by sorting a given list of event dates in an ascending order.

    Example:

    Inpu...
  • Ans. 

    Sort a list of event dates in ascending order based on year, month, and day.

    • Sort the list of dates based on year, then month, and finally day.

    • Use a sorting algorithm to rearrange the dates in ascending order.

    • Ensure the constraints are met for each date in the list.

  • Answered by AI
  • Q2. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Q3. 

    Maximum Sum Problem Statement

    Given an integer N, your task is to recursively break it into three integer parts: N / 2, N / 3, and N / 4. You need to compute the maximum sum possible by dividing the numbe...

  • Ans. 

    Given an integer N, recursively break it into three parts and find the maximum sum possible.

    • Recursively divide N into N/2, N/3, and N/4 to find the maximum sum

    • Compare the sum obtained by dividing N with the sum of N itself

    • Return the maximum sum for each test case

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMorgan Stanley interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions based on DSA.

  • Q1. 

    Duplicate Integer in Array

    Given an array ARR of size N, containing each number between 1 and N-1 at least once, identify the single integer that appears twice.

    Input:

    The first line contains an integer...
  • Q2. 

    Sum Root to Leaf Numbers

    You are given an arbitrary binary tree consisting of N nodes, each associated with an integer value from 1 to 9. Each root-to-leaf path can be considered a number formed by concat...

  • Q3. 

    Topological Sort Problem Statement

    You are given a directed acyclic graph (DAG). Your task is to perform topological sorting of the graph and return any valid ordering.

    Explanation:

    A directed acyclic g...

Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions based on DSA.

  • Q1. 

    LCA of Binary Tree Problem Statement

    You are given a binary tree consisting of distinct integers and two nodes, X and Y. Your task is to find and return the Lowest Common Ancestor (LCA) of these two nodes...

  • Q2. 

    Rotated Array Minimum Finder

    You are provided with a sorted array that has undergone 'K' rotations (the exact value of 'K' is unknown). A rotation involves shifting each element of the array to the right,...

  • Q3. 

    Maximum Binary Tree Construction Problem

    Given an array TREE of 'N' unique integers, construct a maximum binary tree using the following rules:

    1. The root of this tree is the maximum number in TREE.
    2. T...
  • Ans. 

    Construct a maximum binary tree from an array of unique integers following specific rules.

    • Find the maximum number in the array to set as the root of the tree.

    • Recursively construct the left subtree with elements before the maximum number.

    • Recursively construct the right subtree with elements after the maximum number.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMorgan Stanley interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Are these interview questions helpful?

Interview Preparation Tips

Round: Test
Experience: The test was for two and half hours where 1 hour was for general aptitude, 1 hr was for coding aptitude(either on java or C or C++as you choose) and 1/2 an hour for two coding questions.

Round: Technical Interview
Experience: In technical round they asked puzzles, aptitude questions and basic C coding. I was asked to write the code for two questions(one was on sort and search) and was asked the logic of two questions.They asked basics of linked lists, stacks, queues. Infact they were not very interested in the syntax and were pressing on the logic

General Tips: Being a non software branch students is not at all a problem. The company took 4 interns where 3 were from core branches. The fact that we had to work in JAVA and most of us didn't know JAVA, the company only looks for aptitude and ability to learn. So if you don't know anything, tell frankly that you don't know that part, rather than guessing. Be thorough with what you know and confidentially answer all the questions.
Also do not be tensed and take things lightly, if the interviewer is joking. Be candid.
Skill Tips: Learn basics of coding from books . Aptitude can be done from sites likes geeks for geeks, etc. The level of aptitude is not very high and infact the coding aptitude is also theoretical and does not involve in depth knowledge.
Skills:
College Name: NIT Surathkal

Interview Preparation Tips

Round: Test
Experience: Online Test (General aptitude, C aptitude ,Programming problems).

General Tips: Study basics of C and DSA well. Utilize the last summer vacations for studying for placements. Be confident and Honest.
Yes it is challenging and exhausting. It tests your patience. But final reward is also great so we must keep going toward it.
Skill Tips: Online coding sites such as Codechef, etc. Narasimha Karumanchi for data structures and algorithm will help in preparation.
Skills:
College Name: NIT Surathkal

I applied via Campus Placement

Interview Questionnaire 

2 Questions

  • Q1. How can a chemical Engineer help citi?
  • Ans. 

    A chemical engineer can help Citi by providing expertise in process optimization, risk management, and sustainability.

    • Optimizing Citi's manufacturing processes to reduce costs and increase efficiency

    • Developing risk management strategies to ensure compliance with environmental regulations

    • Implementing sustainable practices to reduce Citi's environmental impact

    • Providing technical expertise in chemical reactions and materi...

  • Answered by AI
  • Q2. He asked me about my JEE Rank, preparations

Interview Preparation Tips

Round: HR Interview
Experience: I had done many web and android apps. They asked me about my institute experience, things I have done here. It was an easy walk for me.

Skills: SQL, Java Programming
Duration: 2
College Name: IIT Madras

Bajaj Finserv Interview FAQs

How many rounds are there in Bajaj Finserv Angular Frontend Developer interview?
Bajaj Finserv interview process usually has 1 rounds. The most common rounds in the Bajaj Finserv interview process are Technical.
What are the top questions asked in Bajaj Finserv Angular Frontend Developer interview?

Some of the top questions asked at the Bajaj Finserv Angular Frontend Developer interview -

  1. What are the different methods available for arrays, and what is the difference...read more
  2. What is Angular, and what do you know about its features? Why is Angular prefer...read more
  3. What is the difference between the `` and `` elements in HT...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 2 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 622 Interviews
Citicorp Interview Questions
3.7
 • 591 Interviews
HSBC Group Interview Questions
3.9
 • 512 Interviews
American Express Interview Questions
4.1
 • 388 Interviews
BNY Interview Questions
3.8
 • 367 Interviews
UBS Interview Questions
3.9
 • 352 Interviews
Morgan Stanley Interview Questions
3.6
 • 309 Interviews
View all
Sales Officer
1.3k salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Assistant Manager
1.3k salaries
unlock blur

₹2.6 L/yr - ₹6.6 L/yr

Sales Executive
1.2k salaries
unlock blur

₹1.5 L/yr - ₹4.4 L/yr

Sales Manager
1.1k salaries
unlock blur

₹3.5 L/yr - ₹7.6 L/yr

Manager
937 salaries
unlock blur

₹4.5 L/yr - ₹10 L/yr

Explore more salaries
Compare Bajaj Finserv with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare
write
Share an Interview