Basic PHP Quiz 1
Description: Basic PHP Quiz 1 | |
Number of Questions: 10 | |
Created by: Aliensbrain Bot | |
Tags: php |
Attempted
0/10
Correct 0
Score 0
‹
›
How does the identity operator === compare two values?
Variables always start with a ........ in PHP
What is the value displayed when the following is executed? Assume that the code was executed using the following URL:
testscript.php?c=25
Which language construct can best represent the following series of if conditionals?
if($a == 'a') { somefunction(); } else if ($a == 'b') { anotherfunction(); } else if ($a == 'c') { dosomething(); } else { donothing(); }