Unit 1: Getting started with MVC Laravel framework - Practice Quiz

INT221 — Mvc Programming 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 What does the acronym MVC stand for in software architecture?

A. Main View Configuration
B. Model Version Control
C. Model View Controller
D. Method View Class

2 In the MVC architecture, which component is primarily responsible for managing the data logic and business rules?

A. Router
B. Controller
C. Model
D. View

3 Which component of the MVC framework interacts directly with the user interface and displays data?

A. Model
B. View
C. Controller
D. Kernel

4 Who represents the "Traffic Cop" in the MVC architecture, directing data flow between the Model and the View?

A. Route
B. Controller
C. Server
D. Database

5 If a user sends a request to an MVC application, what is the typical flow of execution?

A.
B.
C.
D.

6 Which of the following is NOT a benefit of using the MVC framework?

A. Simultaneous development by multiple developers
B. Increased coupling between logic and presentation
C. Ease of maintenance
D. Separation of concerns

7 Who is the original creator of the Laravel framework?

A. Rasmus Lerdorf
B. EllisLab
C. Taylor Otwell
D. Fabien Potencier

8 Laravel is built upon which underlying PHP framework components?

A. Yii
B. Zend
C. CodeIgniter
D. Symfony

9 What is the name of the built-in templating engine used in Laravel?

A. Blade
B. Twig
C. Mustache
D. Smarty

10 Which feature in Laravel allows for an expressive, fluent way to interact with databases using Model classes?

A. Active Record
B. Eloquent ORM
C. Doctrine
D. PDO Wrapper

11 What is Composer in the context of PHP and Laravel development?

A. A dependency manager for PHP
B. A frontend framework
C. A server configuration tool
D. A database management tool

12 Which file does Composer primarily use to list project dependencies?

A. composer.json
B. composer.lock
C. package.json
D. config.php

13 When installing Composer globally, which directory allows the composer command to be run from anywhere in the terminal?

A. The downloads folder
B. A directory in the system's
C. The project root
D. The apache htdocs folder

14 Which command is used to install the dependencies defined in composer.json for an existing project?

A. composer get
B. php install
C. composer new
D. composer install

15 What is the purpose of the composer.lock file?

A. It prevents the project from being deleted.
B. It encrypts the PHP source code.
C. It locks the database to prevent writes.
D. It locks the dependencies to specific versions to ensure consistency.

16 Which folder is automatically generated by Composer to store downloaded libraries?

A. libs
B. modules
C. vendor
D. packages

17 Which Composer command allows you to create a new Laravel project from the command line?

A. composer download laravel
B. composer create-project laravel/laravel project-name
C. composer new laravel
D. composer init laravel

18 If the Laravel Installer is globally installed, which command creates a new project?

A. laravel create project-name
B. php laravel new
C. laravel new project-name
D. composer laravel new

19 What is the minimum PHP version required for the latest major versions of Laravel (e.g., Laravel 10/11)?

A. PHP 7.0
B. PHP 8.1 or higher
C. PHP 7.4
D. PHP 5.6

20 Which command is used to start the local development server provided by Laravel?

A. composer start
B. php start
C. php artisan serve
D. npm run dev

21 In a standard Laravel directory structure, where is the entry point (index.php) located?

A. public/
B. root directory
C. app/
D. resources/

22 Which directory contains the User.php model by default in a fresh Laravel installation?

A. resources/models
B. app/Http
C. database/models
D. app/Models

23 Where are the application's configuration files stored?

A. system/config
B. config/
C. app/Config
D. .env

24 Which directory holds the migration files, model factories, and seeds?

A. app/Database
B. storage/
C. database/
D. resources/

25 In which directory would you find your uncompiled views (Blade templates) and raw assets (LESS, SASS, JS)?

A. resources/
B. public/
C. app/Views
D. views/

26 What is the primary purpose of the .env file in the project root?

A. To store database migrations
B. To cache the configuration
C. To store environment-specific configuration variables
D. To list composer dependencies

27 Which Artisan command generates the application key found in the .env file?

A. php artisan init
B. php artisan config:cache
C. php artisan key:generate
D. php artisan make:key

28 Where are the Controller files located within the Laravel directory structure?

A. routes/controllers
B. app/Controllers
C. resources/controllers
D. app/Http/Controllers

29 Which file is responsible for defining web routes in a Laravel application?

A. app/Http/routes.php
B. routes/console.php
C. routes/web.php
D. routes/api.php

30 What is Artisan in Laravel?

A. The database engine
B. The template engine
C. The command-line interface (CLI) included with Laravel
D. The authentication system

31 Which Artisan command allows you to view a list of all available commands?

A. php artisan commands
B. php artisan show
C. php artisan help
D. php artisan list

32 Which command creates a new Controller class named ProductController?

A. php artisan new:controller ProductController
B. php artisan make:controller ProductController
C. php artisan controller:make ProductController
D. php artisan create:controller ProductController

33 To create a migration file for a database change, which command is used?

A. php artisan make:migration
B. php artisan create:table
C. php artisan migration:new
D. php artisan db:migration

34 Which Artisan command executes the pending database migrations?

A. php artisan migrate
B. php artisan migrate:install
C. php artisan migrate:run
D. php artisan db:push

35 What does the php artisan tinker command do?

A. Clears the cache
B. Fixes syntax errors
C. Opens an interactive REPL (Read-Eval-Print Loop) for the application
D. Optimizes the application

36 Which directory contains the autoload.php file generated by Composer?

A. vendor/
B. public/
C. app/
D. bootstrap/

37 What is the purpose of the storage/ directory?

A. Stores the source code
B. Stores compiled Blade templates, file based sessions, and logs
C. Stores the database files
D. Stores the configuration files

38 In the routes/ directory, what is api.php used for?

A. Defining routes that return Views
B. Defining broadcasting channels
C. Defining console commands
D. Defining stateless routes (RESTful) usually for mobile apps or external consumers

39 Which Artisan command would you use to clear the application cache?

A. php artisan cache:clear
B. php artisan clear:cache
C. php artisan flush
D. php artisan clean

40 Laravel uses PSR-4 autoloading. What does this primarily facilitate?

A. Security encryption
B. Frontend asset compilation
C. Automatic database connection
D. Loading classes automatically based on namespaces and file paths

41 What is the function of Middleware in Laravel?

A. To compile CSS
B. To filter HTTP requests entering the application
C. To store database records
D. To render HTML views

42 Which folder serves as the bootstrap location for loading the framework?

A. bootstrap/
B. init/
C. start/
D. launch/

43 Which command creates a Model and a Migration simultaneously?

A. php artisan make:model Name -m
B. Both A and B
C. php artisan make:model Name --migration
D. php artisan create:model Name -mig

44 If you see a Whoops, looks like something went wrong page, what setting in .env controls the detail level of this error?

A. DB_CONNECTION
B. APP_KEY
C. APP_ENV
D. APP_DEBUG

45 The App namespace in Laravel usually maps to which directory?

A. src/
B. app/
C. code/
D. application/

46 In MVC, if a logic calculation requires the formula , where should this calculation ideally reside?

A. In the View file
B. In the config folder
C. In the Model or a Service class
D. In the Route definition

47 Which PHP extension is almost always required for Laravel to run (handling strings)?

A. imagick
B. soap
C. gd
D. mbstring

48 To put the application into maintenance mode, which Artisan command is used?

A. php artisan down
B. php artisan maintenance
C. php artisan pause
D. php artisan stop

49 Which directory in Laravel is generally meant to be writable by the web server?

A. routes
B. storage
C. config
D. app

50 What is the syntax to output a variable $name in a Blade view, automatically escaping it?

A. <?= $name ?>
B. @echo $name
C. {{ $name }}
D. { $name }