Start here. This is the direct spoken answer to practice first.
Why this question matters
This drill checks whether the candidate understands the actual path of a request, not only controller code. Many production bugs around authentication, CORS, error handling, routing, and logging come from pipeline configuration rather than business logic.
The ASP.NET Core request pipeline is a sequence of middleware components that process the incoming request and outgoing response. Each middleware can inspect the request, call the next component, add behavior, or stop the request early. Routing selects the endpoint, and then the endpoint executes controller, minimal API, or other handler logic. The order matters because authentication, authorization, error handling, and CORS depend on where they run.