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

You need to escape special characters to use user input inside a regular expression. Which functions would you use? (Choose 2)

A.

addslashes()

B.

htmlentities()

C.

preg_quote()

D.

regex_quote()

E.

quotemeta()

Question # 62

How can the constant defined below be accessed from within PHP?

class myClass {

const FOO = ' BAR ' ;

}

A.

myClass::$FOO

B.

myClass::$$FOO

C.

myClass::FOO

D.

myClass::foo

E.

$foo::myClass

Question # 63

What is the difference between isset() and other is_*() functions (is_alpha(), is_number(), etc.)?

A.

isset() is a function call and is_*() are not function calls

B.

is_*() are language constructs and isset() is not a language construct

C.

c) isset() is a language construct and is_*() are not language constructs

D.

d) is_*() return a value whereas isset() does not

Question # 64

An HTML form contains this form element:

< input type= " image " name= " myImage " src= " image.png " / >

The user clicks on the image to submit the form. How can you now access the relative coordinates of the mouse click?

A.

$_IMAGE[ ' myImage ' ][ ' x ' ] and $_IMAGE[ ' myImage ' ][ ' y ' ]

B.

$_POST[ ' myImage ' ][ ' x ' ] and $_POST[ ' myImage ' ][ ' x ' ]

C.

$_POST[ ' myImage.x ' ] and $_POST[ ' myImage.y ' ]

D.

$_POST[ ' myImage_x ' ] and $_POST[ ' myImage_y ' ]

Question # 65

Which PHP function is used to validate whether the contents of $_FILES[ ' name ' ] [ ' tem_name ' ] have really been uploaded via HTTP ' ?

Question # 66

What is the output of the following code: echo " 1 " + 2 * " 0x02 " ;

A.

1

B.

3

C.

5

D.

20

E.

7

Question # 67

How many array elements will be found in the return value of:

split( " . " , "

A.

B.C " )

B.

2

C.

3

D.

1

E.

6

F.

4

Question # 68

Which elements does the array returned by the function pathinfo() contain?

A.

root, dir, file

B.

dirname, filename, fileextension

C.

dirname, basename, extensio

D.

path, file

Question # 69

The following form is loaded in a browser and submitted, with the checkbox activated:

< form method= " post " >

< input type= " checkbox " name= " accept " >

< form >

In the server-side PHP code to deal with the form data, what is the value of $_POST[ ' accept ' ]?

A.

accept

B.

ok

C.

true

D.

on

Question # 70

What is the output of the following code?

printf( ' %4$d %2$s sit on 2 trees and eat %3$3.2f %1$s ' , " bananas " ,

" monkeys " , 9, 99);

A.

%4$d %2$s sit on 2 trees and eat %3$3.2f %1$s

B.

99 monkeys sit on 2 trees and eat 9.00 bananas

C.

Monkeys Bananas sit on 2 trees and eat 9 99

D.

9 monkeys sit on 2 trees and eat 99 bananas

Go to page: