Filter interviews by
React lifecycle methods are special methods that are called automatically at certain points in a component's life cycle.
Mounting: constructor, render, componentDidMount
Updating: render, componentDidUpdate
Unmounting: componentWillUnmount
JavaScript event loop manages the execution of multiple tasks in a single-threaded environment.
JavaScript is single-threaded, meaning it can only execute one task at a time.
The event loop continuously checks the call stack for tasks to execute.
Tasks are added to the call stack from the callback queue once the call stack is empty.
I appeared for an interview in Oct 2024.
Implement a stack using 2 queues
Use two queues to simulate stack operations
Push operation can be implemented by adding elements to one of the queues
Pop operation can be implemented by transferring elements between the two queues
Top trending discussions
I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.
A framework is a set of guidelines, standards, and tools used to develop software applications.
A framework provides a structure for developers to build upon
It includes pre-written code and libraries to simplify development
Frameworks can be specific to a programming language or platform
Examples include React for web development and TensorFlow for machine learning
posted on 19 Nov 2020
I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.
Swap two numbers with and without temporary variable
Without temporary variable: Use addition and subtraction
With temporary variable: Use a third variable to store the value of one of the numbers
Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;
Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;
based on 3 interviews
Interview experience
based on 14 reviews
Rating in categories
Senior Software Engineer
11
salaries
| ₹16 L/yr - ₹30 L/yr |
Software Engineer
6
salaries
| ₹6 L/yr - ₹17.4 L/yr |
Software Developer
5
salaries
| ₹10.8 L/yr - ₹15.6 L/yr |
Data Scientist
4
salaries
| ₹9.1 L/yr - ₹16 L/yr |
Application Developer
4
salaries
| ₹6 L/yr - ₹8.4 L/yr |
TCS
Accenture
Wipro
Cognizant