Core React

  1. What is React?

  2. What is the history behind React evolution?

  3. What are the major features of React?

  4. What is JSX?

  5. What is the difference between Element and Component?

  6. How to create components in React?

  7. When to use a Class Component over a Function Component?

  8. What are Pure Components?

  9. What is state in React?

  10. What are props in React?

  11. What is the difference between state and props?

  12. Why should we not update the state directly?

  13. What is the purpose of callback function as an argument of setState()?

  14. What is the difference between HTML and React event handling?

  15. How to bind methods or event handlers in JSX callbacks?

  16. How to pass a parameter to an event handler or callback?

  17. What are synthetic events in React?

  18. What are inline conditional expressions?

  19. What is "key" prop and what is the benefit of using it in arrays of elements?

  20. What is the use of refs?

  21. How to create refs?

  22. What are forward refs?

  23. Which is preferred option with in callback refs and findDOMNode()?

  24. Why are String Refs legacy?

  25. What is Virtual DOM?

  26. How Virtual DOM works?

  27. What is the difference between Shadow DOM and Virtual DOM?

  28. What is React Fiber?

  29. What is the main goal of React Fiber?

  30. What are controlled components?

  31. What are uncontrolled components?

  32. What is the difference between createElement and cloneElement?

  33. What is Lifting State Up in React?

  34. What are the different phases of component lifecycle?

  35. What are the lifecycle methods of React?

  36. What are Higher-Order Components?

  37. How to create props proxy for HOC component?

  38. What is context?

  39. What is children prop?

  40. How to write comments in React?

  41. What is the purpose of using super constructor with props argument?

  42. What is reconciliation?

  43. How to set state with a dynamic key name?

  44. What would be the common mistake of function being called every time the component renders?

  45. Is lazy function supports named exports?

  46. Why React uses className over class attribute?

  47. What are fragments?

  48. Why fragments are better than container divs?

  49. What are portals in React?

  50. What are stateless components?

  51. What are stateful components?

  52. How to apply validation on props in React?

  53. What are the advantages of React?

  54. What are the limitations of React?

  55. What are error boundaries in React v16?

  56. How are error boundaries handled in React v15?

  57. What is the use of react-dom package?

  58. What is the purpose of render method of react-dom?

  59. What is ReactDOMServer?

  60. How to use innerHTML in React?

  61. How to use styles in React?

  62. How events are different in React?

  63. What will happen if you use setState() in constructor?

  64. What is the impact of indexes as keys?

  65. Is it good to use setState() in componentWillMount() method?

  66. What will happen if you use props in initial state?

  67. How do you conditionally render components?

  68. Why we need to be careful when spreading props on DOM elements?

  69. How you use decorators in React?

  70. How do you memoize a component?

  71. How you implement Server Side Rendering or SSR?

  72. How to enable production mode in React?

  73. What is CRA and its benefits?

  74. What is the lifecycle methods order in mounting?

  75. What are the lifecycle methods going to be deprecated in React v16?

  76. What is the purpose of getDerivedStateFromProps() lifecycle method?

  77. What is the purpose of getSnapshotBeforeUpdate() lifecycle method?

  78. Do Hooks replace render props and higher order components?

  79. What is a switching component?

  80. Why we need to pass a function to setState()?

    Why function is preferred over object for setState()?

  81. What are React Mixins?

  82. Why is isMounted() an anti-pattern and what is the proper solution?

  83. What are the Pointer Events supported in React?

  84. Why should component names start with capital letter?

  85. Are custom DOM attributes supported in React v16?

  86. What is the difference between constructor and getInitialState?

  87. Can you force a component to re-render without calling setState?

  88. What is the difference between super() and super(props) in React using ES6 classes?

  89. How to loop inside JSX?

  90. How do you access props in attribute quotes?

  91. What is React proptype array with shape?

  92. How to conditionally apply class attributes?

  93. What is the difference between React and ReactDOM?

  94. Why ReactDOM is separated from React?

  95. How to use React label element?

  96. How to combine multiple inline style objects?

  97. How to re-render the view when the browser is resized?

  98. What is the difference between setState() and replaceState() methods?

  99. How to listen to state changes?

  100. Is it possible to use React without rendering HTML?

  101. How to pretty print JSON with React?

  102. Why you can't update props in React?

  103. How to focus an input element on page load?

  104. What are the possible ways of updating objects in state?

  105. How can we find the version of React at runtime in the browser?

  106. What are the approaches to include polyfills in your create-react-app?

  107. How to use https instead of http in create-react-app?

  108. How to avoid using relative path imports in create-react-app?

  109. How to add Google Analytics for React Router?

  110. How to update a component every second?

  111. How do you apply vendor prefixes to inline styles in React?

  112. How to import and export components using React and ES6?

  113. Why is a component constructor called only once?

  114. How to define constants in React?

  115. How to programmatically trigger click event in React?

  116. Is it possible to use async/await in plain React?

  117. What are the common folder structures for React?

  118. What is the benefit of styles modules?

  119. How to make AJAX call and in which component lifecycle methods should I make an AJAX call?

  120. What are render props?

React Router

  1. What is React Router?

  2. How React Router is different from history library?

  3. What are the <Router> components of React Router v4?

  4. What is the purpose of push() and replace() methods of history?

  5. How do you programmatically navigate using React Router v4?

  6. How to get query parameters in React Router v4?

  7. Why you get "Router may have only one child element" warning?

  8. How to pass params to history.push method in React Router v4?

  9. How to implement default or NotFound page?

  10. How to get history on React Router v4?

  11. How to perform automatic redirect after login?

React Internationalization

  1. What is React Intl?

  2. What are the main features of React Intl?

  3. What are the two ways of formatting in React Intl?

  4. How to use <FormattedMessage> as placeholder using React Intl?

  5. How to access current locale with React Intl?

  6. How to format date using React Intl?

React Testing

  1. What is Shallow Renderer in React testing?

  2. What is TestRenderer package in React?

  3. What is the purpose of ReactTestUtils package?

  4. What is Jest?

  5. What are the advantages of Jest over Jasmine?

  6. Give a simple example of Jest test case

React Redux

  1. What is flux?

  2. What is Redux?

  3. What are the core principles of Redux?

  4. What are the downsides of Redux compared to Flux?

  5. What is the difference between mapStateToProps() and mapDispatchToProps()?

  6. Can I dispatch an action in reducer?

  7. How to access Redux store outside a component?

  8. What are the drawbacks of MVW pattern?

  9. Are there any similarities between Redux and RxJS?

  10. How to dispatch an action on load?

  11. How to use connect() from React Redux?

  12. How to reset state in Redux?

  13. Whats the purpose of at symbol in the Redux connect decorator?

  14. What is the difference between React context and React Redux?

  15. Why are Redux state functions called reducers?

  16. How to make AJAX request in Redux?

  17. Should I keep all component's state in Redux store?

  18. What is the proper way to access Redux store?

  19. What is the difference between component and container in React Redux?

  20. What is the purpose of the constants in Redux?

  21. What are the different ways to write mapDispatchToProps()?

  22. What is the use of the ownProps parameter in mapStateToProps() and mapDispatchToProps()?

  23. How to structure Redux top level directories?

  24. What is redux-saga?

  25. What is the mental model of redux-saga?

  26. What are the differences between call() and put() in redux-saga?

  27. What is Redux Thunk?

  28. What are the differences between redux-saga and redux-thunk?

  29. What is Redux DevTools?

  30. What are the features of Redux DevTools?

  31. What are Redux selectors and why to use them?

  32. What is Redux Form?

  33. What are the main features of Redux Form?

  34. How to add multiple middlewares to Redux?

  35. How to set initial state in Redux?

  36. How Relay is different from Redux?

  37. What is an action in Redux?

React Native

  1. What is the difference between React Native and React?

  2. How to test React Native apps?

  3. How to do logging in React Native?

  4. How to debug your React Native?

React supported libraries & Integration

  1. What is reselect and how it works?

  2. What is Flow?

  3. What is the difference between Flow and PropTypes?

  4. How to use Font Awesome icons in React?

  5. What is React Dev Tools?

  6. Why is DevTools not loading in Chrome for local files?

  7. How to use Polymer in React?

  8. What are the advantages of React over Vue.js?

  9. What is the difference between React and Angular?

  10. Why React tab is not showing up in DevTools?

  11. What are Styled Components?

  12. Give an example of Styled Components?

  13. What is Relay?

  14. How to use TypeScript in create-react-app application?

Miscellaneous

  1. What are the main features of Reselect library?

  2. Give an example of Reselect usage?

  3. Does the statics object work with ES6 classes in React?

  4. Can Redux only be used with React?

  5. Do you need to have a particular build tool to use Redux?

  6. How Redux Form initialValues get updated from state?

  7. How React PropTypes allow different types for one prop?

  8. Can I import an SVG file as react component?

  9. What is render hijacking in react?

  10. What are HOC factory implementations?

  11. How to pass numbers to React component?

  12. Do I need to keep all my state into Redux? Should I ever use react internal state?

  13. What is the purpose of registerServiceWorker in React?

  14. What is React memo function?

  15. What is React lazy function?

  16. How to prevent unnecessary updates using setState?

  17. How do you render Array, Strings and Numbers in React 16 Version?

  18. How to use class field declarations syntax in React classes?

  19. What are hooks?

  20. What rules need to be followed for hooks?

  21. How to ensure hooks followed the rules in your project?

  22. What are the differences between Flux and Redux?

  23. What are the benefits of React Router V4?

  24. Can you describe about componentDidCatch lifecycle method signature?

  25. In which scenarios error boundaries do not catch errors?

  26. Why do you not need error boundaries for event handlers?

  27. What is the difference between try catch block and error boundaries?

  28. What is the behavior of uncaught errors in react 16?

  29. What is the proper placement for error boundaries?

  30. What is the benefit of component stack trace from error boundary?

  31. What is the required method to be defined for a class component?

  32. What are the possible return types of render method?

  33. What is the main purpose of constructor?

  34. Is it mandatory to define constructor for React component?

  35. What are default props?

  36. Why should not call setState in componentWillUnmount?

  37. What is the purpose of getDerivedStateFromError?

  38. What is the methods order when component re-rendered?

  39. What are the methods invoked during error handling?

  40. What is the purpose of displayName class property?

  41. What is the browser support for react applications?

  42. What is the purpose of unmountComponentAtNode method?

  43. What is code-splitting?

  44. What are Keyed Fragments?

  45. Does React support all HTML attributes?

  46. What are the limitations with HOCs?

  47. How to debug forwardRefs in DevTools?

  48. When component props defaults to true?

  49. What is NextJS and major features of it?

  50. How do you pass an event handler to a component?

  51. Is it good to use arrow functions in render methods?

  52. How to prevent a function from being called multiple times?

  53. How JSX prevents Injection Attacks?

  54. How do you update rendered elements?

  55. How do you say that props are readonly?

  56. How do you say that state updates are merged?

  57. How do you pass arguments to an event handler?

  58. How to prevent component from rendering?

  59. What are the conditions to safely use the index as a key?

  60. Should keys be globally unique?

  61. What are the advantages of formik over redux form library?

  62. Why are you not required to use inheritance?

  63. Can I use web components in react application?

  64. What is dynamic import?

  65. What are loadable components?

  66. What is suspense component?

  67. What is route based code splitting?

  68. Give an example on How to use context?

  69. What is the purpose of default value in context?

  70. How do you use contextType?

  71. What is a consumer?

  72. How do you solve performance corner cases while using context?

  73. What is the purpose of forward ref in HOCs?

  74. Is ref argument available for all functions or class components?

  75. Why do you need additional care for component libraries while using forward refs?

  76. How to create react class components without ES6?

  77. Is it possible to use react without JSX?

  78. What is diffing algorithm?

  79. What are the rules covered by diffing algorithm?

  80. When do you need to use refs?

  81. Must prop be named as render for render props?

  82. What are the problems of using render props with pure components?

  83. How do you create HOC using render props?

  84. What is windowing technique?

  85. How do you print falsy values in JSX?

  86. What is the typical use case of portals?

  87. How do you set default value for uncontrolled component?

  88. What is your favorite React stack?

  89. What is the difference between Real DOM and Virtual DOM?

  90. How to add Bootstrap to a react application?

  91. Can you list down top websites or applications using react as front end framework?

  92. Do I need to rewrite all my class components with hooks?

  93. How to fetch data with React Hooks?

  94. Is Hooks cover all use cases for classes?

  95. What is the stable release for hooks support?

  96. Why do we use array destructuring (square brackets notation) in useState?

  97. What are the sources used for introducing hooks?

  98. How do you access imperative API of web components?

  99. What is formik?

  100. What are typical middleware choices for handling asynchronous calls in Redux?

  101. Do browsers understand JSX code?

  102. Describe about data flow in react?

  103. What is react scripts?

  104. What are the features of create react app?

  105. What is the purpose of renderToNodeStream method?

  106. What is MobX?

  107. What are the differences between Redux and MobX?

  108. Should I learn ES6 before learning ReactJS?

  109. What is Concurrent Rendering?

  110. What is the difference between async mode and concurrent mode?

  111. Can I use javascript urls in react16.9?

  112. What is the purpose of eslint plugin for hooks?

  113. What is the difference between Imperative and Declarative in React?

  114. What are the benefits of using typescript with reactjs?

  115. How do you make sure that user remains authenticated on page refresh while using Context API State Management?

  116. What are the benefits of new JSX transform?

  117. How is the new JSX transform different from old transform??

  118. How do you get redux scaffolding using create-react-app?

  119. What are React Server components?

  120. What is prop drilling?

  121. What is state mutation and how to prevent it?

  122. What is the difference between useState and useRef hook?

  123. What is a wrapper component?

  124. What are the differences between useEffect and useLayoutEffect hooks?

  125. What are the differences between Functional and Class Components?

  126. What is strict mode in React?

  127. What is the benefit of strict mode?

  128. Why does strict mode render twice in React?


Latest Post


iCalendar (ICS) Standard

Sulav Jung Hamal - 2025/04/15

Re-learning HTTP, but in depth this time

Sulav Jung Hamal - 2025/04/02

Nassi-Shneiderman Charts for Program Design

Cornelia M. Yoder, Marilyn L. Schrag - 2025/03/26

What is Model Agnostic Meta-Learning?

Chelsea Finn, Pieter Abbeel, Sergey Levine - 2025/03/25

Daily Vibes