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 14 hours ago Total Questions : 254

The Zend PHP 5.3 Certification content is now fully updated, with all current exam questions added 14 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 # 1

Which options do you have in PHP to set the expiry date of a session?

A.

Set the session.duration directive in php.ini

B.

Set session cookie expiry date locally via session_set_cookie_params()

C.

Set session expiry date locally via session_cache_expire()

D.

None of the above

Question # 2

What function allows resizing of PHP ' s file write buffer?

A.

ob_start()

B.

set_write_buffer()

C.

stream_set_write_buffer()

D.

Change the output_buffering INI setting via ini_set() function

Question # 3

Which technique should be used to speed up joins without changing their results?

A.

Add indices on joined columns

B.

Add a WHERE clause

C.

Add a LIMIT clause

D.

Use an inner join

Question # 4

Which of the following statements about SOAP is NOT true?

A.

SOAP is 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.

Question # 5

Which of the following techniques ensures that a value submitted in a form can only be yes or no?

A.

Use a select list that only lets the user choose between yes and no.

B.

Use a hidden input field that has a value of yes or no.

C.

Enable the safe_mode configuration directive.

D.

None of the above.

Question # 6

What is the return value of the following code?

strpos( " me myself and I " , " m " , 2)

A.

2

B.

3

C.

4

D.

0

E.

1

Question # 7

Identify the security vulnerability in the following example:

1 < ?php

2 echo " Welcome, {$_POST[ ' name ' ]}. " ;

3 ? >

A.

SQL Injection

B.

Cross-Site Scripting

C.

Remote Code Injection

D.

None of the above

Question # 8

An HTML form has two buttons. After submitting the form, how could you determine with PHP which button was clicked?

A.

An HTML form may only have one button.

B.

Hook up JavaScript the form to add a value to the URL depending on which button has been clicked.

C.

Put the two buttons in individual form elements with different action attribute.

D.

Assign name and value attributes to each button and use $_GET or $_POST to find out which button has been clicked.

Question # 9

Is the following code piece E_STRICT compliant?

final class Testing {

var $test = 0;

public function tester() {

return " Tested! " ;

}}

A.

Yes

B.

No

Question # 10

How do you allow the caller to submit a variable number of arguments to a function?

A.

Using a prototype like function test(... $parameters).

B.

Using a prototype like function test() and the function func_get_args() inside the function body.

C.

Using a prototype like function test($parameters[]).

D.

Using a prototype like function test() and the function get_variable_args() inside the function body.

E.

This is not possible in PHP.

Go to page: