Intervue featured on Shark TankIntervue featured on Shark Tank - mobile banner

Top react interview questions

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?

What are the core concepts of React?

What is the difference between a controlled component and an uncontrolled component in React?

What is the purpose of the `key` prop in React?

What is a higher-order component in React?

What is the difference between `useState` and `useReducer` in React?

What is React Hooks and how does it differ from class-based components?

What is the purpose of the `useEffect` hook in React?

What is a React context and how is it used?

What is the difference between `React.memo` and `React.useCallback`?

What is the purpose of the `useRef` hook in React?

What is the difference between a functional component and a class-based component in React?

What is the purpose of the `getDerivedStateFromProps` method in React?

What is the difference between `React.PureComponent` and `React.Component`?

What is the purpose of the `shouldComponentUpdate` method in React?

What is the difference between `React.lazy` and `React.Suspense`?

What is the purpose of the `useLayoutEffect` hook in React?

What is the difference between `React.createContext` and `React.useContext`?

What is the purpose of the `useImperativeHandle` hook in React?

What is the difference between `React.forwardRef` and `React.createRef`?

Write a React component that renders a list of items and allows the user to add new items to the list.

Write a React hook that fetches data from an API and returns the data and an error message if the fetch fails.

Write a React component that renders a counter and allows the user to increment and decrement the counter.

Write a React component that renders a todo list and allows the user to add, remove, and toggle the completion of todo items.

Write a React component that renders a simple form with input fields for name and email, and a submit button that logs the form data to the console.

Write a React component that renders a simple table with columns for name and age, and rows for each item in the data array.

Write a React component that renders a simple dropdown menu with options for each item in the data array.