4
Exam Number/Code:200-550 Exam Name:Zend Certified PHP Engineer Version: Demo http://cert24.com/

cert24 Zend-Technologies 200-550 Training Exam

Embed Size (px)

DESCRIPTION

Totally hassle free! All you need to do is contact the Customer Support and request for the exam you like. You will be required to scan a copy of your failed exam Zend-Technologies PHP 200-550 Zend Certified PHP Engineer and mail it to us so you are provided access to another certification test immediately. Your success is insured by the www.cert24.com Guarantee!

Citation preview

Page 1: cert24 Zend-Technologies 200-550 Training Exam

Exam Number/Code:200-550

Exam Name:Zend Certified PHPEngineer

Version: Demo

http://cert24.com/

Page 2: cert24 Zend-Technologies 200-550 Training Exam

QUESTION NO: 1What is the output of the following code?echo '1' . (print '2') + 3;

A. 123B. 213C. 142D. 214E. Syntax error

Answer: D

QUESTION NO: 2What 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;}

A. oneB. twoC. threeD. four

Answer: C

QUESTION NO: 3What is "instanceof" an example of?

A. a booleanB. an operatorC. a functionD. a language constructE. a class magic

Answer: B

QUESTION NO: 4

Page 3: cert24 Zend-Technologies 200-550 Training Exam

Which of the following may be used in conjunction with CASE inside a SWITCHstatement?

A. A scalarB. An expressionC. A booleanD. All of the above

Answer: D

QUESTION NO: 5What is the output of the following code?$a = 'a'; $b = 'b';echo isset($c) ? $a.$b.$c : ($c = 'c').'d';

A. abcB. cdC. 0d

Answer: B

QUESTION NO: 6Which of the following are valid identifiers? (Choose 3)

A. function 4You() { }B. function _4You() { }C. function object() { }D. $1 = "Hello";E. $_1 = "Hello World";

Answer: B,C,E

QUESTION NO: 7What super-global should be used to access information about uploaded files via a POSTrequest?

A. $_SERVERB. $_ENVC. $_POSTD. $_FILESE. $_GET

Page 4: cert24 Zend-Technologies 200-550 Training Exam

Answer: D

QUESTION NO: 8What is the difference between "print" and "echo"?

A. There is no difference.B. Print has a return value, echo does notC. Echo has a return value, print does notD. Print buffers the output, while echo does notE. None of the above

Answer: B

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

A. 1B. 3C. 5D. 20E. 7

Answer: C

QUESTION NO: 10What is the result of the following bitwise operation in PHP?1 ^ 2

A. 1B. 3C. 2D. 4E. -1

Answer: B