Zend-Technologies Zend Certified Engineer - 200-710 FREE EXAM DUMPS QUESTIONS & ANSWERS

What is the output of the following code?
class Test {
public function _call($name, $args)
{
call_user_func_array(array('static', "test$name"), $args);
}
public function testS($1) {
echo "$1,";
class Test2 extends Test {
public function testS($1) {
echo "$1,$1,";
}
$ test = new Test2();
$ test->S('A');
Correct Answer: B Vote an answer
What is the name of the function that allows you register a set of functions that implement user-defined
session handling?
Correct Answer: C Vote an answer
Which of the following may be used in conjunction with CASE inside a SWITCH statement?
Correct Answer: B Vote an answer
What is the output of the following code?
function increment ($val)
{
+ +$val;
$ val= 1;
increment ($val);
echo $val;
Correct Answer:
1
Which of the following functions are used to escape data within the context of HTML? (Choose 2)
Correct Answer: D,E Vote an answer
What is the output of the following code?
$ f = function () { return "hello";};
echo gettype($f);
Correct Answer: B Vote an answer
Which of the following is an invalid DOM save method?
Correct Answer: D Vote an answer
Which of the following tasks can be achieved by using magic methods? (Choose 3)
Correct Answer: B,C,F Vote an answer
What will the following function call print?
printf('%010.6f', 22);
Correct Answer: C Vote an answer
0
0
0
10