Online Access Free 200-710 Exam Questions

Exam Code:200-710
Exam Name:Zend Certified Engineer
Certification Provider:Zend-Technologies
Free Question Number:235
Posted:Sep 09, 2025
Rating
100%

Question 1

Which of the following PHP functions can be used to set the HTTP response code? (Choose 2)

Question 2

Which of the following is NOT a requirement for file uploads to work?

Question 3

What is the output of the following code?
echo "1" + 2 * "0x02";

Question 4

In the following code, which classes can be instantiated?
abstract class Graphics {
abstract function draw($im, $col);
}
abstract class Point1 extends Graphics {
public $x, $y;
}
function _construct($x, $y) {
$ this->x = $x;
$ this->y = $y;
}
function draw($im, $col) {
lmageSetPixel($im, $this->x, $this->y, $col);
}
class Point2 extends Point1 {}
abstract class Point3 extends Point2 {}

Question 5

What is the output of the following code?
function increment (&$val)
{
return $va I + 1;
$ a= 1;
echo increment ($a);
echo increment ($a);

Add Comments

Your email address will not be published. Required fields are marked *

insert code
Type the characters from the picture.