1. In which file are web routes defined in a Laravel application?
All web routes that respond to HTTP requests in Laravel are typically defined in the routes/web.php file using simple route definitions.
Route::get('/home', [HomeController::class, 'index']);