Weekend Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: Board70

200-500 Exam Dumps - Zend Certification Questions and Answers

Question # 4

Which of the following will set a 10 seconds read timeout for a stream?

Options:

A.

ini_set("default_socket_timeout", 10);

B.

stream_read_timeout($stream, 10);

C.

Specify the timeout as the 5th parameter to the fsockopen() function used to open a stream

D.

stream_set_timeout($stream, 10);

E.

None of the above

Buy Now
Question # 5

What visibility denies access to properties and methods outside of the class?

Options:

A.

static

B.

protected

C.

private

D.

public

E.

const

Buy Now
Question # 6

Given the following code, what will be the value of $a?

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

array_push($a, array(1, 2));

Options:

A.

array('a', 'b', 1, 2)

B.

array(1, 2, 'a', 'b')

C.

array(array(1, 2), 'a', 'b')

D.

None of the above

Buy Now
Question # 7

What tags can always be used to begin a PHP script (Choose 2)?

Options:

A.

B.

C.

<%

D.

<%php

E.