wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Laravel Entry Assessment

Total questions: 14

Worksheet time: 11mins

Name
Class
Date
1.

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?

a)

.env file is missing

b)

The .htaccess file is misconfigured or missing

c)

Laravel is not installed

d)

The database credentials are incorrect

2.

What is the correct way to print "Hello, World!" in PHP?

a)

console.log("Hello, World!");

b)

print("Hello, World!");

c)

echo "Hello, World!";

d)

System.out.println("Hello, World!");

3.

What is the key difference between Django and Laravel?

a)

Django is used only for frontend development

b)

Laravel is based on Python, while Django is based on PHP

c)

Django is Python-based, while Laravel is PHP-based

d)

Django requires a database, while Laravel does not

4.

Which of the following best describes the client-server model?

a)

The server sends requests to the client, which executes them.

b)

The client and server both execute commands simultaneously without interaction.

c)

The client sends a request to the server, which processes it and sends a response.

d)

The server manages everything, and clients only display the data.

5.

What does HTTP stand for?

a)

Hyper Terminal Transfer Protocol

b)

HyperText Transfer Protocol

c)

High Transmission Text Protocol

d)

Hyperlink Technology Transport Protocol

6.

The (a)   Bash command is used to list all files and directories in the current directory?

7.

CSS allows you to apply styles to multiple pages using an external stylesheet.

a)

TRUE

b)

FALSE

8.

Python is a _______ typed language, whereas PHP is a dynamically typed

a)

loosely

b)

statically

c)

strongly

d)

weakly

9.

Laravel provides built-in authentication functionality.

a)

TRUE

b)

FALSE

10.

RAM is a type of non-volatile storage.

a)

TRUE

b)

FALSE

11.

Match the Laravel Artisan commands to their purpose.

a)

Runs database migrations

1.

php artisan migrate:

b)

Starts a local development server

2.

php artisan serve:

c)

User: Creates a new model

3.

php artisan make:model

d)

Creates a new controller

4.

php artisan make:controller HomeControll

12.

Match the ICT terms with their definitions.

a)

Central Processing Unit

1.

Central Processing Unit

b)

Unique identifier for a device on a network

2.

IP Address

c)

A security system that monitors and controls network traffic

3.

Firewall

d)

The maximum rate of data transfer across a network

4.

Bandwidth

13.

Match the HTML elements with their correct purpose.

a)

Defines a heading

1.

<h1>

b)

Defines a paragraph

2.

<p>

c)

Displays an image

3.

<img>

d)

Creates a hyperlink

4.

<a>

14.

What does MVC stand for in software development?

a)

Model-View-Component

b)

Module-Version-Control

c)

Model-View-Controller

d)

Managed-Variable-Class