New Year Special Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: scxmas70

200-550 Exam Dumps - Zend Certified PHP Engineer

Go to page:
Question # 9

Which PHP function sets a cookie and URL encodes its value when sending it to the browser?

Full Access
Question # 10

What is the output of the following code?

$a = array('a', 'b'=>'c');

echo property_exists((object) $a, 'a')?'true':'false';

echo '-';

echo property_exists((object) $a, 'b')?'true':'false';

A.

false-false

B.

false-true

C.

true-false

D.

true-true

Full Access
Question # 11

Which of the following statements about SOAP is NOT true?

A.

SOAP is also a request-/response-based protocol.

B.

SOAP can be transported using SMTP, HTTP and other protocols.

C.

SOAP requires developers to use WSDL.

D.

SOAP traffic via HTTP can be encrypted and compressed just like other HTTP requests.

Full Access
Question # 12

What will be the output value of the following code?

$array = array(1,2,3);

while (list(,$v) = each($array));

var_dump(current($array));

A.

bool(false)

B.

int(3)

C.

int(1)

D.

NULL

E.

Array

Full Access
Question # 13

Which PHP function sets a cookie whose value does not get URL encoded when sending it to the browser?

Full Access
Question # 14

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

A.

A scalar

B.

An expression

C.

A boolean

D.

All of the above

Full Access
Question # 15

What is the output of the following code?

var_dump(boolval(new StdClass()));

A.

bool(true)

B.

bool(false)

Full Access
Question # 16

Which of the following are valid identifiers? (Choose 3)

A.

function 4You() { }

B.

function _4You() { }

C.

function object() { }

D.

$1 = "Hello";

E.

$_1 = "Hello World";

Full Access
Go to page: