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

7 Who is the original creator of the Laravel framework?

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

8 Laravel is built upon which underlying PHP framework components?

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

A. laravel create project-name
B. laravel new 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 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. npm run dev
B. php start
C. php artisan serve
D. composer start

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

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

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

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

23 Where are the application's configuration files stored?

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

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

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

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

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

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

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

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

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

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

A. resources/controllers
B. app/Http/Controllers
C. app/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 template engine
C. The authentication system
D. The command-line interface (CLI) included with Laravel

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

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

32 Which command creates a new Controller class named ProductController?

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

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

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

34 Which Artisan command executes the pending database migrations?

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

35 What does the php artisan tinker command do?

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

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

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

37 What is the purpose of the storage/ directory?

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

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 broadcasting channels
D. Defining console commands

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

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

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

A. Security encryption
B. Automatic database connection
C. Frontend asset compilation
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 store database records
C. To render HTML views
D. To filter HTTP requests entering the application

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

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

43 Which command creates a Model and a Migration simultaneously?

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

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

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

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

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

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

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

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

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

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

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

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

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