Unit 1 - Practice Quiz

INT221 50 Questions
0 Correct 0 Wrong 50 Left
0/50

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

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

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

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

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

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

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

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

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. Separation of concerns
B. Simultaneous development by multiple developers
C. Increased coupling between logic and presentation
D. Ease of maintenance

7 Who is the original creator of the Laravel framework?

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

8 Laravel is built upon which underlying PHP framework components?

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

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

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

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 database management tool
B. A frontend framework
C. A dependency manager for PHP
D. A server configuration tool

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

A. package.json
B. composer.lock
C. composer.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 project root
B. A directory in the system's
C. The downloads folder
D. The apache htdocs folder

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

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

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

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

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

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

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

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

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

A. laravel new project-name
B. laravel create project-name
C. php laravel new
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 5.6
B. PHP 7.0
C. PHP 8.1 or higher
D. PHP 7.4

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

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

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

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

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

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

23 Where are the application's configuration files stored?

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

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

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

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

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

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

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

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

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

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

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

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

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

30 What is Artisan in Laravel?

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

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

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

32 Which command creates a new Controller class named ProductController?

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

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

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

34 Which Artisan command executes the pending database migrations?

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

35 What does the php artisan tinker command do?

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

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

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

37 What is the purpose of the storage/ directory?

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

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

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

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 clean
D. php artisan flush

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

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

41 What is the function of Middleware in Laravel?

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

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

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

43 Which command creates a Model and a Migration simultaneously?

A. php artisan make:model Name --migration
B. php artisan make:model Name -m
C. Both A and B
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. APP_ENV
B. APP_DEBUG
C. APP_KEY
D. DB_CONNECTION

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

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

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

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

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

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

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

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

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

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

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

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