i
Bajaj
Finserv
Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards
Filter interviews by
I appeared for an interview in May 2025, where I was asked the following questions.
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...
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...
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...
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...
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...
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...
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...
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...
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 ...
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...
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 ...
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
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...
Top trending discussions
posted on 10 May 2015
Multi tasking, multi processing, and multi programming are different approaches to managing tasks in an operating system.
Multi tasking allows multiple tasks to run concurrently on a single processor.
Multi processing involves multiple processors running tasks simultaneously.
Multi programming allows multiple programs to be loaded into memory and executed concurrently.
Examples of multi tasking operating systems include Wi...
Memory allocation refers to the process of assigning memory to programs during runtime.
Stack allocation is done automatically and is limited in size.
Heap allocation is done manually and is larger in size.
Stack memory is used for local variables and function calls.
Heap memory is used for dynamic memory allocation.
Memory leaks can occur if heap memory is not properly managed.
Use a shared variable and synchronization mechanisms to ensure natural order printing of numbers.
Create two threads, one for printing even numbers and the other for printing odd numbers.
Use a shared variable to keep track of the current number to be printed.
Implement synchronization mechanisms like locks or semaphores to ensure only one thread can access the shared variable at a time.
Each thread should check if it is i...
Printing a matrix in spiral order
Start from the first element and print it
Move in a spiral order towards the center of the matrix
Repeat until all elements are printed
Thread class and Runnable Interface are used for multithreading in Java.
Thread class is a predefined class in Java that provides methods to create and control threads.
Runnable interface is used to define a task that can be executed by a thread.
Thread class implements Runnable interface.
Thread class provides more control over threads than Runnable interface.
Example: Thread t = new Thread(new MyRunnable()); t.start();
Exa...
Linked List is a dynamic data structure while ArrayList is a static data structure.
Linked List is best for frequent insertion and deletion operations.
ArrayList is best for frequent access operations.
Linked List uses more memory than ArrayList.
ArrayList is faster than Linked List for accessing elements.
Use Linked List when you need to frequently add or remove elements from the list.
Use ArrayList when you need to frequen...
I am not interested in a career in investment banking.
I am more interested in a career in software development
I enjoy problem-solving and creating innovative solutions through coding
Investment banking does not align with my passion and skill set
I have chosen to apply to J.P. Morgan because of their reputation, global presence, and opportunities for growth.
J.P. Morgan has a strong reputation in the financial industry.
They have a global presence with offices in multiple countries.
The company offers various opportunities for career growth and development.
J.P. Morgan is known for its innovative technology solutions in the financial sector.
I am impressed by their ...
Yes, I have made a mistake in my previous project.
I underestimated the complexity of a task and ended up missing the deadline.
I failed to properly test a feature, resulting in a bug that affected user experience.
I accidentally deleted an important file without having a backup.
I misunderstood a requirement and implemented a feature incorrectly.
posted on 9 Jan 2022
I applied via Naukri.com and was interviewed in Jul 2021. There was 1 interview round.
posted on 5 Jul 2021
posted on 11 Jul 2023
I applied via Campus Placement and was interviewed before Jul 2022. There were 6 interview rounds.
Simple aptitude test ............
3 question leetcode medium .......
posted on 14 Feb 2024
posted on 14 Feb 2024
I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.
Heap memory can be monitored using tools like profilers. Objects are removed from heap memory through garbage collection.
Use profilers like VisualVM or Java Mission Control to monitor heap memory usage
Analyze heap dumps to identify memory leaks and optimize memory usage
Garbage collection automatically removes unreferenced objects from heap memory
Different garbage collection algorithms like Mark and Sweep, Copying, and ...
Handling an application running on different instances involves load balancing, monitoring, and synchronization.
Implement load balancing to distribute the workload evenly across instances.
Monitor the performance and health of each instance to ensure optimal operation.
Use synchronization techniques to maintain consistency and avoid conflicts between instances.
Implement failover mechanisms to handle instances going offli...
Yes, a load balancer can handle multiple addition of new instances or pods.
A load balancer distributes incoming traffic across multiple instances or pods.
To handle multiple additions, the load balancer should be able to dynamically update its routing configuration.
Load balancers can use various algorithms to distribute traffic, such as round-robin, least connections, or weighted distribution.
Load balancers can also per...
Caching improves application performance by storing frequently accessed data in memory.
Identify the data that needs to be cached
Choose a caching strategy (e.g., in-memory cache, distributed cache)
Implement caching logic in the application code
Set appropriate cache expiration policies
Handle cache invalidation when data changes
Yes, a distributed system can handle 1M requests per second by using load balancing, horizontal scaling, and caching.
Implement load balancing to distribute incoming requests across multiple servers.
Use horizontal scaling by adding more servers to handle the increased load.
Implement caching to store frequently accessed data and reduce the load on the backend.
Optimize the system by using efficient algorithms and data str...
posted on 25 Oct 2023
Aptitude round it is very easy
posted on 22 Oct 2023
Very easy questions on stack and simple string questions
Some of the top questions asked at the Bajaj Finserv Angular Frontend Developer interview -
based on 2 interview experiences
Difficulty level
Duration
Sales Officer
1.3k
salaries
| ₹1.5 L/yr - ₹4.2 L/yr |
Assistant Manager
1.3k
salaries
| ₹2.2 L/yr - ₹6.7 L/yr |
Sales Executive
1.2k
salaries
| ₹1.5 L/yr - ₹4.5 L/yr |
Sales Manager
1.1k
salaries
| ₹3.5 L/yr - ₹7.6 L/yr |
Manager
937
salaries
| ₹4.5 L/yr - ₹10 L/yr |
Wells Fargo
JPMorgan Chase & Co.
HSBC Group
Cholamandalam Investment & Finance