Free Zend 200-710 Exam Actual Questions

The questions for 200-710 were last updated On Nov 8, 2024

Question No. 1

When using password_hash() with the PASSWORD_DEFAULT algorithm constant, which of the following is true? (Choose 2)

Show Answer Hide Answer
Correct Answer: A, C

Question No. 2

Consider the following code. What change must be made to the class for the code to work as written?

class Magic {

protected $v = array("a" => 1, "b" => 2, "c" => 3);

public function __get($v) {

return $this->v[$v];

}

}

$m = new Magic();

$m->d[] = 4;

echo $m->d[0];

Show Answer Hide Answer
Correct Answer: D

Question No. 3

What will the following function call print?

printf('%010.6f', 22);

Show Answer Hide Answer
Correct Answer: C

Question No. 4

What information can be used to reliably determine the type of an uploaded file?

Show Answer Hide Answer
Correct Answer: C

Question No. 5

Which MIME type is always sent by a client if a JPEG file is uploaded via HTTP?

Show Answer Hide Answer
Correct Answer: D