TF
True/False
MC
Multiple
MA
Matching
CO
Comprehension
Question
Answer
Level
Subject
Time
Laravel routes are defined in web.php
True
Very Easy
Routes
04:00
In Laravel, route parameters are always required by default unless followed by a question mark.
True
Very Easy
Routes
01:00
The Route::resource method automatically generates a route for a "patch" request.
True
Easy
Routes
01:00
Laravel routes defined in web.php are automatically assigned the "api" middleware group.
False
Very Easy
Routes
01:00
Route groups allow you to share attributes, such as middleware or namespaces, across a large number of routes.
True
Easy
Routes
02:00
A single route can only respond to one HTTP verb (e.g., only GET or only POST).
False
Medium
Routes
01:00
A Single Action Controller is defined by using the __invoke() magic method.
True
Easy
Controllers
02:00
Controllers must always extend the base Controller class to function in Laravel.
False
Hard
Controllers
02:00
Dependency injection can be used in a controller constructor to automatically resolve classes from the service container.
True
Medium
Controllers
03:00
The "php artisan make:controller" command creates a controller in the App/Http/Controllers directory by default.
True
Very Easy
Controllers
01:00
API Resource Controllers include "create" and "edit" methods by default when generated via artisan.
False
Easy
Controllers
01:00
laravel only uses GET and POST for routes.
False
Very Easy
Routes
01:00