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

Exact2Pass Menu

Zend PHP 5.3 Certification

Last Update 15 hours ago Total Questions : 254

The Zend PHP 5.3 Certification content is now fully updated, with all current exam questions added 15 hours ago. Deciding to include 200-530 practice exam questions in your study plan goes far beyond basic test preparation.

You'll find that our 200-530 exam questions frequently feature detailed scenarios and practical problem-solving exercises that directly mirror industry challenges. Engaging with these 200-530 sample sets allows you to effectively manage your time and pace yourself, giving you the ability to finish any Zend PHP 5.3 Certification practice test comfortably within the allotted time.

Question # 51

Which parts of the text are matched in the following regular expression?

A.

bang bong bung

B.

bang bonged bung

C.

big bang bong bung

D.

big bang bung

Question # 52

How can a PHP extension be loaded? (Choose 2)

A.

ini_set( " extension " , " extension.so " );

B.

dl( " extension.so " );

C.

extension_load( " extension.so " );

D.

extension=extension.so inside php.ini

Question # 53

A script residing at http://example.com/phpcert/cookies.php contains the following code:

1 < ?php

2 setcookie( ' name1 ' , ' value1 ' , time() + 60*60*24, ' / ' );

3 setcookie( ' name1 ' , ' value2 ' );

4 ? >

The web browser is configured to accept all cookies. How many cookies will be set by this script?

A.

0

B.

1

C.

2

D.

3

Question # 54

The constructs for(), foreach(), and each() can all be used to iterate an object if the object

A.

implements ArrayAccess

B.

implements Iterator

C.

implements Iterator and ArrayAccess

D.

None of the above

Question # 55

Transactions are used to:

A.

guarantee high performance

B.

secure data consistency

C.

secure access to the database

D.

reduce the database server overhead

E.

reduce code size in PHP

Question # 56

Transitions can be used to: (Choose 2)

A.

Recover from errors in case of a power outage or a failure in the SQL connection

B.

Ensure that the data is properly formatted

C.

Ensure that either all statements are performed properly, or that none of them are.

D.

Recover from user errors

Question # 57

What will the following code piece print?

echo strtr( ' Apples and bananas ' , ' ae ' , ' ea ' )

A.

Applas end benenes

B.

Epplas end benenes

C.

Apples and bananas

D.

Applas end bananas

Question # 58

REST is a(n) ...

A.

Web service protocol similar to SOAP with a strict XML schema.

B.

Principle to exchange information using XML and HTTP.

C.

API to get information from social networking sites.

Question # 59

What is the error in the following declaration of a static class method?

1 < ?php

2 class car {

3 static $speeds = array(

4 ' fast ' ,

5 ' slow ' ,

6 ' medium ' ,

7 );

8

9 static function getSpeeds()

10 {

11 return $this- > speeds;

12 }

13 }

14 ? >

A.

Static methods must not return a value.

B.

The use of $this from within static methods is not possible.

C.

Static methods need the method keyword instead of the function keyword.

D.

There is no static keyword in PHP.

Question # 60

After executing a SELECT query on a database server,

A.

All data is immediately transmitted to PHP

B.

All data will be transmitted on-demand to PHP

C.

None of the above

Go to page: