Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: xmas50

Zend 200-530 - Zend PHP 5.3 Certification

Page: 8 / 8
Total 254 questions

What happens if you try to access a property whose name is defined in a parent class as private, and is not declared in the current class?

A.

An E_NOTICE error will be triggered.

B.

An E_ERROR error will be triggered.

C.

An E_WARNING error will be triggered.

D.

No errors will be triggered

What is the name of the key in $_FILES['name'] that contains the number of bytes of the uploaded file?

What is the best way to run PHP 4 and PHP 5 side-by-side on the same Apache server?

A.

Run one as an Apache module, the other as a CGI binary.

B.

Run both as a CGI binary.

C.

Just use .php4 for PHP 4, and .php for PHP 5.

D.

Use .php for both but use different document roots.

What is the content of $c after the following code has executed?

$a = 2;

$b = 3;

$c = ($a++ * ++$b);

A.

0

B.

5

C.

8

D.

4

Which 2.17of the following formats is used to describe web services?

A.

WSDL

B.

UDDI

C.

SOAP

D.

XLANG

What is the output of the following code?

A.

A syntax error in the function declaration line

B.

An error, because null is not an instance of 'a'

C.

Nothing, because a null value is being passed to renderVal()

D.

NULL