What is the output of the following code?
echo '1' . (print '2') + 3;
Answer : D
What is the output of the following code?
$a = 3;
switch ($a) {
case 1: echo 'one'; break;
case 2: echo 'two'; break;
default: echo 'four'; break;
case 3: echo 'three'; break;
Answer : C
What is "instanceof" an example of?
Answer : B
Which of the following may be used in conjunction with CASE inside a SWITCH statement?
Answer : D