Loading...
QUIZ

Certification Test

 
Que No. 1 ) What is Laravel's built-in authentication system called?

A.) Passport
B.) Sentry
C.) Sanctum
D.) Jetstream


Que No. 2 ) In Laravel, what is the purpose of the csrf middleware?

A.) To validate form data
B.) To protect against cross-site request forgery attacks
C.) To authenticate users
D.) To define routes


Que No. 3 ) Which Laravel feature allows you to create and manage database tables using PHP code?

A.) Eloquent ORM
B.) Artisan Migrate
C.) Blade templating engine
D.) Form Request Validation


Que No. 4 ) What is the purpose of Laravel's broadcasting feature?

A.) To send email notifications
B.) To broadcast real-time events to connected clients
C.) To define routes
D.) To create and manage Blade templates


Que No. 5 ) In Laravel, what is the purpose of the artisan tinker command?

A.) To generate API documentation
B.) To interact with the application using a REPL (Read-Eval-Print Loop)
C.) To run database migrations
D.) To create controllers


Que No. 6 ) What is the purpose of Laravel's composer.lock file?

A.) To store environment variables
B.) To lock down the specific versions of dependencies used in the project
C.) To configure database connections
D.) To define routes


Que No. 7 ) Which Laravel feature provides a way to create RESTful API endpoints easily?

A.) Eloquent ORM
B.) Blade templating engine
C.) Artisan
D.) Resource Controllers


Que No. 8 ) What is Laravel's primary testing framework called?

A.) PHPUnit
B.) Testify
C.) Laravel Testing
D.) Artisan Testing


Que No. 9 ) What is the purpose of the Laravel factory feature?

A.) To create instances of Eloquent models for testing and seeding databases
B.) To define routes
C.) To generate API documentation
D.) To create controllers


Que No. 10 ) In Laravel, what is the purpose of the Eloquent class?

A.) To define routes
B.) To create and manage Blade templates
C.) To represent database tables as objects
D.) To create and manage middleware