Labour Day Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: mxmas70

Home > Zend > ZCE > 200-710

200-710 Zend Certified Engineer Question and Answers

Question # 4

What is the output of the following code?

A.

1

B.

2

C.

null

Full Access
Question # 5

What will the following function call print?

A.

22

B.

22.00

C.

022.000000

D.

22.000000

Full Access
Question # 6

Your supervisor wants you to disallow PHP scripts to open remote HTTP and FTP resources using PHP’s file functions. Which php.ini setting should you change accordingly?

Full Access
Question # 7

An HTML form has two submit buttons. After submitting the form, how can you determine with PHP which button was clicked?

A.

An HTML form may only have one button.

B.

You cannot determine this with PHP only. You must use JavaScript to add a value to the URL depending on which button has been clicked.

C.

Put two buttons in different forms, but make sure they have the same name.

D.

Assign name and value attributes to each button and use $_GET or $_POST to find out which button has been clicked.

Full Access
Question # 8

Which of the following are valid code snippets? (Choose three.)

A.

function 4You(){}

B.

function_4You(){}

C.

function object(){}

D.

$1 = “Hello”;

E.

$_1 = ”Hello World”;

Full Access
Question # 9

Assuming UTF-8 encoding, what is the value of $count?

A.

4

B.

5

C.

7

D.

0

Full Access
Question # 10

What is the method used to execute XPath queries in the SimpleXML extension?

A.

xpathQuery()

B.

xpath()

C.

simpleXMLXpath()

D.

query()

E.

evaluate()

Full Access
Question # 11

What is the output of the following code?

Full Access