Zend 200-710 - Zend Certified Engineer Certification Exam
Question #6 (Topic: Demo Questions)
What is "instanceof" an example of?
Correct Answer: B
Explanation not available for this question.
Question #7 (Topic: Demo Questions)
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;
}
Correct Answer: C
Explanation not available for this question.