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 # 41

When you need to process the values of columns in a database, you should:

A.

Only use built-in database functions

B.

Always use read the values as-is from the database and then process them with PHP

C.

Use built-in database functions for simple processing, and perform more complicated logic in PHP

D.

Use built-in database functions for complicated logic, and perform simpler functions in PHP

Question # 42

Can a private static member be accessed from a public static method of the same class?

A.

Yes

B.

No

C.

Only if the class is defined as an abstract

Question # 43

Which of the following functions are used to escape data within the context of HTML?

(Choose 2)

A.

htmlentities()

B.

addslashes()

C.

stripslashes()

D.

strip_tags()

E.

htmlspecialchars()

Question # 44

Consider the following code. What can be said about the call to file_get_contents?

A.

A GET request will be performed on http://example.com/submit.php

B.

A POST request will be performed on http://example com/submit.php

C.

An error will be displayed

Question # 45

Which of the following statements is true?

A.

All PHP database extensions support prepared statements

B.

All PHP database extensions come with their own special helper functions to escape user data to be used in dynamic SQL queries

C.

All PHP database extensions provide an OOP interface

D.

All PHP database extensions appear in the output of php -m , if installed

Question # 46

Which combination of the following filtering techniques prevents cross-site scripting (XSS) vulnerabilities?

A.

Strip all occurrences of the string $lt; script.

B.

Strip all occurrences of the string javascript.

C.

Enable magic_quotes_gpc .

D.

None of the above.

Question # 47

After executing a query on a database server, PHP offers several functions to read the resulting lines, such as mysqli_fetch_assoc, pg_fetch_row, oci_fetch,etc.). If such functions do not return any rows, it means: (Choose 2)

A.

a SELECT statement returned no rows

B.

the transaction has been rolled back

C.

the connection to the database server was disconnected during query execution

D.

the query was too slow to execute

Question # 48

Which requirements need NOT be met so that file uploads work?

A.

The PHP directive file_uploads must be set to on

B.

The form ' s method attribute must be set to " post "

C.

Sate mode must be turned off so that the uploaded file an be written to the server

D.

The form ' s enctype attribute must be set to " multipart/form-data "

Question # 49

You want to present the following formatted number: " 999.000.000,00 " . Which function call is correct?

A.

print format_number(999000000);

B.

print number_format(999000000);

C.

print number_format(999000000, 2, ' , ' , ' . ' );

D.

print number_format(999000000, 2);

E.

print_number(999000000, 2, ' , ' , ' . ' )

Question # 50

What is the output of the following code?

try {

class MyException extends Exception {};

try {

throw new MyException;

}

catch (Exception $e) {

echo " 1: " ;

throw $e;

}c

atch (MyException $e) {

echo " 2: " ;

throw $e;

}}

catch (Exception $e) {

echo get_class($e);

}

A.

A parser error, try cannot be followd by multiple catch

B.

1:

C.

2:

D.

1:Exception

E.

1:MyException

F.

2:MyException

G.

MyException

Go to page: