Real interview questions from top companies for React. Includes theoretical concepts and coding problems.
What is React and how does it differ from other JavaScript libraries?
React is a JavaScript library for building user interfaces. It differs from other libraries in its use of components, a virtual DOM, and a one-way data binding approach.
What are the core concepts of React?
The core concepts of React include components, props, state, lifecycle methods, and the virtual DOM.
What is the difference between a controlled component and an uncontrolled component in React?
A controlled component is one where the state is managed by the component's parent, while an uncontrolled component manages its own state.
What is the purpose of the `key` prop in React?
The `key` prop is used to help React identify which items in a list have changed, are added, or are removed.
What is a higher-order component in React?
A higher-order component is a function that takes a component as an argument and returns a new component with additional props or behavior.
What is the difference between `useState` and `useReducer` in React?
`useState` is used for simple state management, while `useReducer` is used for more complex state management scenarios.
What is React Hooks and how does it differ from class-based components?
React Hooks is a way to use state and other React features in functional components, differing from class-based components in its approach to state and lifecycle methods.
What is the purpose of the `useEffect` hook in React?
The `useEffect` hook is used to handle side effects, such as fetching data or setting timers, in functional components.
What is a React context and how is it used?
A React context is a way to share data between components without passing props down manually, used for theming, authentication, and other global state management scenarios.
What is the difference between `React.memo` and `React.useCallback`?
`React.memo` is used to memoize components, while `React.useCallback` is used to memoize functions.
What is the purpose of the `useRef` hook in React?
The `useRef` hook is used to create a reference to a DOM node or a value that persists between renders.
What is the difference between a functional component and a class-based component in React?
A functional component is a pure function that takes props and returns JSX, while a class-based component is a class that extends the `React.Component` class and has its own state and lifecycle methods.
What is the purpose of the `getDerivedStateFromProps` method in React?
The `getDerivedStateFromProps` method is used to update the state of a component based on changes to its props.
What is the difference between `React.PureComponent` and `React.Component`?
`React.PureComponent` is a version of `React.Component` that implements `shouldComponentUpdate` with a shallow comparison of props and state.
What is the purpose of the `shouldComponentUpdate` method in React?
The `shouldComponentUpdate` method is used to determine whether a component should be re-rendered based on changes to its props or state.
What is the difference between `React.lazy` and `React.Suspense`?
`React.lazy` is used to lazy-load components, while `React.Suspense` is used to handle the loading state of lazy-loaded components.
What is the purpose of the `useLayoutEffect` hook in React?
The `useLayoutEffect` hook is used to handle side effects that require the DOM to be updated, such as measuring the size of an element.
What is the difference between `React.createContext` and `React.useContext`?
`React.createContext` is used to create a context, while `React.useContext` is used to consume a context.
What is the purpose of the `useImperativeHandle` hook in React?
The `useImperativeHandle` hook is used to create a custom imperative handle for a component.
What is the difference between `React.forwardRef` and `React.createRef`?
`React.forwardRef` is used to forward a ref to a child component, while `React.createRef` is used to create a new ref.
Write a React component that renders a list of items and allows the user to add new items to the list.