1.Which tag indicates the start of a block of PHP code?


< / php >
<-php->
<?php
<php?>

 

2. A line of PHP code is terminated by this symbol...


>
/]
.
;

 3. Which tag may be used to indicate a comment in your PHP code?



//
#
/*
All of these

4. Variables in PHP start with what symbol?


$
*
&
!

5. To add 1 to the variable $myNum, use the following?


$myNum++ ;
$myNum++ ;
$myNum++ ;
$myNum -= 1 ;