Route Parameters and Query Parameters
Distinguish route (path) parameters from query parameters and explain how to read each reactively.
Route parameters (:id in a path like /products/:id) and query parameters (?sort=price appended after the path) both carry data through the URL, but they express different intents and interviewers expect you to articulate that distinction clearly: route parameters identify a specific resource as part of the route's structure itself, while query parameters modify or filter the view without changing which resource/route is being addressed.
A route parameter is like a house's street address — it determines which house you're literally standing in front of — while a query parameter is like telling the delivery driver 'leave it on the porch, not with the doorman,' a modifier on how you're handled once you've already arrived at that address.