200-530 Zend PHP 5.3 Certification

Loading demo links...

Showing 13–15 of 15 questions

Question 13

What is the output of the following code?

Select an option, then click Submit answer.

  • false-false

  • false-true

  • true-false

  • true-true


Question 14

Consider the following two files. When you run test.php, what would the output look like?

Select an option, then click Submit answer.

  • 12, 12

  • 12, 24

  • 24, 12

  • 24, 24

  • PHP Fetal error. Cannot redeclare strlen()


Question 15

What is the output of the following code?

$a = 1;

++$a;

$a*=$a;

echo $a--;

Select an option, then click Submit answer.

  • 4

  • 3

  • 5

  • 0

  • 1