1.What is the default caching driver for Laravel when no other driver is specified?
- 1.APC
- 2.Database
- 3.File ✓
- 4.Redis
2.Which of the following commands is used to create a new Artisan command in Laravel?
- 1.make:command ✓
- 2.make:custom
- 3.command:new
- 4.artisan:new-command
3.In Laravel, which method is used to seed a database with records?
- 1.runSeeder()
- 2.seedDatabase()
- 3.DatabaseSeeder::run() ✓
- 4.Seeder::execute()
4.What feature of Laravel allows for the protection against cross-site request forgery (CSRF)?
- 1.HTTP Middleware
- 2.CSRF Token ✓
- 3.Request Validation
- 4.Input Sanitization
5.Which method would you use to retrieve a user's input data securely in a Laravel controller?
- 1.request::get()
- 2.fetch()
- 3.request()->input() ✓
- 4.Input::get()
6.How do you define a default value for a query string parameter in a Laravel controller method?
- 1.public function example($param = 'default') ✓
- 2.public function example($param->default())
- 3.public function example->default()
- 4.public function example->input()->default('value')
7.Which Laravel component allows you to listen for and respond to events in your application?
- 1.Middleware
- 2.Event Listeners ✓
- 3.Service Providers
- 4.Observers
8.How can you queue a job for later execution in Laravel?
- 1.dispatchNow(new JobName)
- 2.dispatch(new JobName) ✓
- 3.queue(new JobName)
- 4.executeLater(new JobName)
9.What is used in Laravel to manage and track all application dependencies and packages?
- 1.Node.js
- 2.Composer ✓
- 3.Bower
- 4.Gulp
10.Which of these is a popular Laravel tool for database migrations?
- 1.Schema
- 2.Migration ✓
- 3.Seed
- 4.Blueprint