When you want to manually manage a reaction's lifecycle in MobX, you would typically use the ________ utility.

  • reaction
  • @transaction
  • @observable
  • @computed
When you want to manually manage a reaction's lifecycle in MobX, you would typically use the reaction utility. The reaction function allows you to explicitly define when and how a reaction should run, giving you fine-grained control over reactivity. The other options (@transaction, @observable, @computed) are decorators or annotations in MobX and are not used for managing reaction lifecycles explicitly.

In the context of Progressive Web Apps (PWA), a strategy that prioritizes using cached data over fetching new data from the network is known as ______.

  • Cache-First
  • Fetch-First
  • Network-First
  • Offline-First
In the context of Progressive Web Apps (PWAs), the strategy that prioritizes using cached data over fetching new data from the network is known as "Cache-First." This strategy improves the app's performance and user experience by first checking if data is available in the cache before making a network request, reducing latency and enhancing offline functionality.

In TypeScript, to represent a type that can never have any value, you use the ________ type.

  • never
  • undefined
  • void
In TypeScript, the never type is used to represent a type that can never have any value. It's typically used for functions that throw exceptions or never return. Unlike void, null, or undefined, never indicates that no value is expected or possible.

You are building a dark mode toggle for a website. You want this setting to be globally accessible in any component and also maintainable. Which hook(s) would be most beneficial for this task?

  • useContext
  • useEffect
  • useReducer
  • useState
For creating a globally accessible dark mode toggle in React, the useContext hook is a strong choice. It allows you to share state across multiple components without having to pass props down the component tree. By using a context provider, you can make the dark mode setting accessible to any component that needs it while maintaining a clean and maintainable code structure. The other hooks have different use cases and are not as suitable for this specific task.

While profiling a complex React application, you observe that a child component renders every time its parent renders, but the child's props haven't changed. What could you utilize to optimize the child component's re-renders?

  • Enabling strict mode in React.
  • React.memo for the child component.
  • Using React.PureComponent for the parent component.
  • Wrapping the child component with React.Fragment.
To optimize the child component's re-renders, you can use React.memo for the child component itself. This memoization technique ensures that the child component doesn't re-render when its props remain unchanged. Utilizing React.PureComponent for the parent won't directly address the issue with the child component.

In JSX, instead of the for attribute, which attribute should be used for associating a label with an input element?

  • id
  • label
  • name
  • text
In JSX, the "for" attribute should not be used to associate a label with an input element. Instead, the "id" attribute should be used along with the "htmlFor" attribute in the label element. The "htmlFor" attribute is used to specify which input element the label is associated with. The "label" attribute is not valid in JSX, and "name" and "text" are not typically used for this purpose.

In Redux, where is the application's state held centrally?

  • In the action creators.
  • In the components.
  • In the middleware.
  • In the store.
In Redux, the application's state is held centrally in the store. The store is a crucial concept in Redux, and it contains the entire state tree of your application. It allows components to access and update the state using well-defined patterns, ensuring a single source of truth for your application's data. While action creators are responsible for creating actions, they don't hold the state centrally.

When using the useEffect hook, how can you ensure the effect runs only once after the initial render?

  • Specify an empty dependency array ([]).
  • Use the useEffectOnce hook.
  • Pass the effect function as a callback to useState.
  • Use the componentWillUnmount lifecycle method.
To ensure the effect runs only once after the initial render, you can specify an empty dependency array ([]). This tells React that the effect has no dependencies, so it should only run after the initial render and not in response to any changes in state or props. The other options are not the correct way to achieve this specific behavior with useEffect.

You are working on a React project and receive feedback about performance issues. You decide to profile the app. While analyzing the flame graph in React DevTools, you notice wide bars. What do these wide bars generally indicate?

  • Asynchronous rendering in React.
  • Blocked JavaScript execution.
  • Deep component nesting.
  • Frequent component re-renders.
Wide bars in a flame graph within React DevTools generally indicate frequent component re-renders. This means that certain components are being re-rendered often, which can lead to performance issues. It's essential to identify and address the causes of frequent re-renders to improve the app's performance.

Class components have built-in methods like componentWillMount, while functional components utilize ________ to achieve similar lifecycle behavior.

  • useComponentWillMount
  • useEffect
  • useLifecycle
  • useState
Class components have built-in lifecycle methods like componentWillMount, but functional components utilize the useEffect hook to achieve similar lifecycle behavior. The useEffect hook allows you to perform actions when the component mounts, updates, or unmounts, making it versatile for managing various lifecycle aspects in functional components.