Beginner PHP Quiz

Bonus Question: What animals are on legal documents?

Elephants

Ants

Whales

Seals

Dogs


1. Which of the following statements will cause an error?

echo " ";

print " ";

echo ' ';

print ' ';

echo $variable


Bonus Question: What kind of pole is short and floppy?

The north pole!

A barber pole!

A tadpole!

A bean pole!

A totem pole!


2. Which of the following is not a type of comment?

#

/* */

//

*


3. Mathematical functions can be performed on numerical strings.

True

False


4. What, in a php program, is used to store values so that they can be used again?

a function

a variable

a comment

an operator

parentheses


5. Which of the following are examples of comparison operators?

=, .=, +=, -=, *=, /=, and %=

&&, || and !

+, -, *, / and %

==, !=, <> <, <=, >, and >=

++ and --


6. What symbol is used to terminate (or indicate the end of) statements?

;

:

.

-

#


7. A string can contain numerical values.

True

False


8. What is php?

a type of web server

a scripting language

a client

a type of database


9. Will a php script work if it is in a file with a ".html" file extension?

Yes

No

Maybe


10. What are the standard (preferred/safest) opening and closing php tags?

<? ?>

<?php ?>

<% %>

<script language="php"> </script>


11. Which of the following is one correct way to set a variable?

&variable = ' ';

$variable - " ";

variable = ' ';

$variable = ';

$variable = ' ';


12. Which of the following are examples of logical operators?

=, .=, +=, -=, *=, /=, and %=

&&, || and !

+, -, *, / and %

==, !=, <> <, <=, >, and >=

++ and --