Filter interviews by
I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.
Life cycle hooks are methods that get called at specific stages of a component's life cycle.
ngOnInit() - called after the component is initialized
ngOnChanges() - called when the component's input properties change
ngOnDestroy() - called just before the component is destroyed
Used to perform specific actions at different stages of a component's life cycle
Yes, I have worked on them in my project
Passing data between parent and child components is component interaction in Angular.
Use @Input decorator to pass data from parent to child component
Use @Output decorator and EventEmitter to pass data from child to parent component
Use services to share data between components
Use ViewChild to access child component's properties and methods from parent component
Angular has four types of data bindings: Interpolation, Property binding, Event binding, and Two-way binding.
Interpolation: {{ expression }}
Property binding: [property]="expression"
Event binding: (event)="expression"
Two-way binding: [(ngModel)]="expression"
Lazy loading is a technique in Angular that loads modules or components on-demand, improving performance.
Lazy loading helps reduce initial load time by loading modules or components only when needed
It improves performance by splitting the application into smaller chunks
Syntax: import() function is used to dynamically load modules or components
The @Input() and @Output() are decorators in Angular used for communication between parent and child components.
The @Input() decorator is used to pass data from a parent component to a child component.
The @Output() decorator is used to emit events from a child component to a parent component.
The @Input() property is bound to a value in the parent component template using property binding.
The @Output() property is bound...
Routing is the process of navigating between different components or pages in an Angular application.
Routing is used to create single-page applications (SPAs) where the content is dynamically loaded without refreshing the entire page.
In Angular, routing is achieved using the RouterModule and the RouterLink directives.
The RouterModule is imported from the @angular/router package and added to the imports array of the app...
Web workers are JavaScript scripts that run in the background, separate from the main browser thread.
Web workers allow for parallel execution of tasks, improving performance and responsiveness.
They can perform computationally intensive tasks without blocking the user interface.
Web workers communicate with the main thread using message passing.
Examples of tasks suitable for web workers include data processing, image man
Observable is for handling multiple values over time, while Promise is for handling a single value.
Observable can emit multiple values over time, while Promise can only emit a single value.
Observable can be cancelled, while Promise cannot be cancelled.
Observable provides operators for transforming and combining data, while Promise does not have such operators.
Observable is lazy, meaning it won't start emitting values u...
The latest version of TypeScript used in my project has several new features.
Optional Chaining and Nullish Coalescing
Improved performance with faster compilation times
Support for private fields and methods
Higher order type inference from generic constructors
Support for ECMAScript private fields
Improved support for tuples
Smaller bundle sizes with tree shaking
To call REST APIs in Angular, use the HttpClient module and its methods like get(), post(), put(), delete().
Import the HttpClientModule in your Angular module
Inject the HttpClient service in your component or service
Use the HttpClient methods to make HTTP requests to the REST APIs
Handle the response using observables and subscribe to them
Example: httpClient.get('https://api.example.com/data')
Example: httpClient.post('h
Top trending discussions
I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.
Developed a web application for managing inventory and sales for a retail store.
Used Angular framework to create a responsive and user-friendly interface.
Implemented features for adding, updating, and deleting products in the inventory.
Integrated with backend APIs to fetch real-time sales data and generate reports.
Utilized Angular Material for designing consistent UI components.
Angular is a popular front-end framework for building web applications. SPA stands for Single Page Application.
Angular is a front-end framework developed by Google for building dynamic web applications.
It uses TypeScript for building applications with components, services, and modules.
SPA is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.
SPA provid...
Lazy loading is a technique in web development where resources are loaded only when needed, improving performance.
Lazy loading helps reduce initial load time by loading resources on demand
It is commonly used in Angular for loading modules, components, or routes asynchronously
Lazy loading can improve user experience by speeding up page load times
RxJS is a library for reactive programming using Observables to handle asynchronous data streams.
RxJS stands for Reactive Extensions for JavaScript.
It allows you to work with asynchronous data streams and handle events.
Operators like map, filter, and mergeMap are used to manipulate and combine streams.
Subscriptions are used to listen to and react to changes in the data streams.
Example: Using RxJS to make HTTP requests
?? is the nullish coalescing operator, while ? is the optional chaining operator in Angular.
?? is used to provide a default value when a variable is null or undefined.
? is used to safely access nested properties of an object without causing errors.
Example: const name = person?.name; // safe access to 'name' property of 'person' object
I applied via Naukri.com and was interviewed before Jun 2021. There were 3 interview rounds.
Coding tests consists of three sets. Two among them are from Javascript/Typescript basics, Angular basics (MCQ's finding the output of code they have given). The remaining one is algorithm problems needs to be solved by Javascript/Typescript.
posted on 31 Jan 2024
I applied via Campus Placement and was interviewed in Dec 2023. There were 3 interview rounds.
It's aptitude and coding test they asked questions related to data interpretation mostly.and one coding question easy one and two SQL questions I got on joins
Topic given by them you have two minutes to think and then discuss with group for 5 minutes. At the end they ask for conclusion from everyone there is group of eight students and they select two or three from them
Types of testing include unit testing, integration testing, system testing, acceptance testing, and regression testing.
Unit testing: Testing individual components or functions of the software.
Integration testing: Testing how different components work together.
System testing: Testing the entire system as a whole.
Acceptance testing: Testing to ensure the software meets the requirements.
Regression testing: Testing to ensu...
Whitebox testing is testing the internal logic of the software, while black box testing is testing the functionality without knowledge of the internal code.
Whitebox testing involves testing the internal structure, code paths, and algorithms of the software.
Black box testing involves testing the functionality, inputs, and outputs of the software without knowledge of the internal code.
Whitebox testing is typically done b...
posted on 9 Oct 2023
I applied via Campus Placement and was interviewed before Oct 2022. There were 4 interview rounds.
Aptitude questions and 2 coding questions were asked
Indexes in DBMS are data structures that improve the speed of data retrieval operations on a database table.
Indexes are used to quickly locate data without having to search every row in a table.
They are created on columns in a table to speed up SELECT queries.
Examples of indexes include primary keys, unique keys, and non-unique indexes.
ACID properties in DBMS refer to the key characteristics of a transaction: Atomicity, Consistency, Isolation, and Durability.
Atomicity ensures that all operations in a transaction are completed successfully or none at all.
Consistency ensures that the database remains in a consistent state before and after the transaction.
Isolation ensures that the execution of multiple transactions concurrently does not interfere with ...
I applied via Naukri.com and was interviewed in Oct 2022. There were 4 interview rounds.
Duration 30 minutes, topics were related to Javascript and Angular
Program to count characters in a string and sort an array without using sort method
Use a loop to iterate through the string and count each character
For sorting an array, use a loop to compare each element with all other elements and swap if necessary
Implement a sorting algorithm like bubble sort, insertion sort or quick sort
I applied via campus placement at Walchand College of Engineering, Sangli and was interviewed in Feb 2022. There were 4 interview rounds.
OOP mcq, 3 coding questions on array and string (easy and medium level),pseudo code etc
I applied via LinkedIn and was interviewed in Jan 2022. There were 2 interview rounds.
based on 3 reviews
Rating in categories
Software Engineer
138
salaries
| ₹3.8 L/yr - ₹14.5 L/yr |
Senior Software Engineer
73
salaries
| ₹6 L/yr - ₹21.1 L/yr |
Business Analyst
47
salaries
| ₹3 L/yr - ₹11.1 L/yr |
Java Developer
40
salaries
| ₹3 L/yr - ₹9.8 L/yr |
Technical Support Engineer
40
salaries
| ₹2.4 L/yr - ₹6 L/yr |
TCS
Infosys
Wipro
HCLTech