Font size
WorksheetsLaravel Entry Assessment
Total questions: 14
Worksheet time: 11mins
You are developing a Laravel web application, and users report that all pages return a 404 Not Found error. What is the most likely cause?
.env file is missing
The .htaccess file is misconfigured or missing
Laravel is not installed
The database credentials are incorrect
What is the correct way to print "Hello, World!" in PHP?
console.log("Hello, World!");
print("Hello, World!");
echo "Hello, World!";
System.out.println("Hello, World!");
What is the key difference between Django and Laravel?
Django is used only for frontend development
Laravel is based on Python, while Django is based on PHP
Django is Python-based, while Laravel is PHP-based
Django requires a database, while Laravel does not
Which of the following best describes the client-server model?
The server sends requests to the client, which executes them.
The client and server both execute commands simultaneously without interaction.
The client sends a request to the server, which processes it and sends a response.
The server manages everything, and clients only display the data.
What does HTTP stand for?
Hyper Terminal Transfer Protocol
HyperText Transfer Protocol
High Transmission Text Protocol
Hyperlink Technology Transport Protocol
The (a) Bash command is used to list all files and directories in the current directory?
CSS allows you to apply styles to multiple pages using an external stylesheet.
TRUE
FALSE
Python is a _______ typed language, whereas PHP is a dynamically typed
loosely
statically
strongly
weakly
Laravel provides built-in authentication functionality.
TRUE
FALSE
RAM is a type of non-volatile storage.
TRUE
FALSE
Match the Laravel Artisan commands to their purpose.
Runs database migrations
php artisan migrate:
Starts a local development server
php artisan serve:
User: Creates a new model
php artisan make:model
Creates a new controller
php artisan make:controller HomeControll
Match the ICT terms with their definitions.
Central Processing Unit
Central Processing Unit
Unique identifier for a device on a network
IP Address
A security system that monitors and controls network traffic
Firewall
The maximum rate of data transfer across a network
Bandwidth
Match the HTML elements with their correct purpose.
Defines a heading
<h1>
Defines a paragraph
<p>
Displays an image
<img>
Creates a hyperlink
<a>
What does MVC stand for in software development?
Model-View-Component
Module-Version-Control
Model-View-Controller
Managed-Variable-Class
