wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

PHP Series

Total questions: 10

Worksheet time: 50secs

Name
Class
Date
1.

<!DOCTYPE html>

<html>

<body>


<h1>My first PHP page</h1>


<?php

echo "Hello World!";

?>


</body>

</html>

a)

My first PHP page

Hello World!

b)

Hello World!

c)

My first PHP page

d)

echo "Hello World!";

2.

<!DOCTYPE html>

<html>

<body>


<?php

ECHO "Hello World!<br>";

echo "Hello World!<br>";

EcHo "Hello World!<br>";

?>


</body>

</html>

The Result..?

a)

Hello World!

Hello World!

Hello World!

b)

Hello World!

c)

Hello World!

Hello World!

d)

Hello World!

Hello World!

Hello World!

Hello World!

3.

PHP is an acronym for "PHP: Hypertext Preprocessor"

a)

True

b)

False

4.

PHP is a widely-used, open source scripting language

a)

True

b)

False

5.

PHP scripts are executed on the server

a)

True

b)

False

6.

PHP is free to download and use

a)

False

b)

True

7.

PHP files can contain text, HTML, CSS, JavaScript, and PHP code

a)

True

b)

False

8.

<!DOCTYPE html>

<html>

<body>


<?php

$color = "red";

echo "My car is " . $color . "<br>";

echo "My house is " . $COLOR . "<br>";

echo "My boat is " . $coLOR . "<br>";

?>


</body>

</html>

the result..?

a)

My car is red

My house is

My boat is

b)

My car is red

My house is

c)

My car is red

9.

<!DOCTYPE html>

<html>

<body>

<?php

// You can also use comments to leave out parts of a code line

$x = 5 /* + 15 */ + 5;

echo $x;

?>

</body>

</html>

the result..?

a)

10

b)

5

c)

15

10.

<!DOCTYPE html>

<html>

<body>


<?php

$txt = "Hello world!";

$x = 5;

$y = 10.5;


echo $txt;

echo "<br>";

echo $x;

echo "<br>";

echo $y;

?>


</body>

</html>

the result..?

a)

Hello world!

5

10.5

b)

Hello world!

c)

5

d)

10.5