27.
How can React Router handle dynamic routing?
By implementing custom logic in the components
By using query parameters in the URL
By defining dynamic paths in the route configuration
By using Redux for state management
Correct: C
React Router allows for dynamic routing by defining dynamic paths in the route configuration. This means that you can have routes that depend on variables or parameters, such as /users/:id, where :id represents a specific user's ID. This way, React Router can match the URL with the appropriate component and pass the necessary data to render the correct view.