-
Which of the following is NOT a valid method to define a route parameter in Laravel?
A)
{parameter}
B)
{parameter?}
C)
{parameter:integer}
D)
{parameter:slug}
Answer: C)
{parameter:integer}
-
What is the purpose of Laravel's
php artisan make:mail
command?A) To create a new email template
B) To create a new email service
C) To create a new email controller
D) To create a new mailable class
Answer: D) To create a new mailable class
-
Which of the following commands is used to run database migrations in Laravel?
A)
php artisan migrate
B)
php artisan run:migrations
C)
php artisan execute:migrations
D)
php artisan migrate:run
Answer: A)
php artisan migrate
-
What is the purpose of Laravel's
php artisan optimize
command?A) To optimize database queries
B) To optimize Blade templates
C) To optimize the performance of the application
D) To optimize CSS and JavaScript files
Answer: C) To optimize the performance of the application
-
Which of the following methods is used to define a route with a controller action in Laravel?
A)
Route::controller()
B)
Route::map()
C)
Route::get()
D)
Route::action()
Answer: A)
Route::controller()
-
What is the purpose of Laravel's
php artisan make:request
command?A) To create a new database request
B) To create a new controller request
C) To create a new form request
D) To create a new HTTP request
Answer: C) To create a new form request
-
Which of the following statements is true about Laravel's broadcasting feature?
A) Broadcasting is only supported for HTTP requests
B) Broadcasting allows real-time event broadcasting over WebSockets
C) Broadcasting can only be used for database migrations
D) Broadcasting requires a third-party package
Answer: B) Broadcasting allows real-time event broadcasting over WebSockets
-
What is the purpose of Laravel's
php artisan make:middleware
command?A) To create a new migration file
B) To create a new controller
C) To create a new middleware class
D) To create a new model
Answer: C) To create a new middleware class
-
Which of the following is NOT a valid method to define a relationship in Laravel's Eloquent ORM?
A)
hasOneThrough()
B)
belongsToMany()
C)
morphTo()
D)
belongsTo()
Answer: A)
hasOneThrough()
-
What is the purpose of Laravel's
php artisan make:command
command?A) To create a new artisan command
B) To create a new terminal command
C) To create a new controller command
D) To create a new middleware command
Answer: A) To create a new artisan command
Comments