Labour Day - Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70dumps

ZF-100-500 Questions and Answers

Question # 6

Which method is used to load a PHP file that may contain any PHP code?

A.

Zend_Loader::load()

B.

Zend_Loader::load()::includeFile()

C.

Zend_Loader::load()::includeOnce()

D.

Zend_Loader::loadFile()

Full Access
Question # 7

Which of the following keywords is necessary for all the switch statements?

A.

Case

B.

Default

C.

Final

D.

View

Full Access
Question # 8

Fill in the blank with the appropriate method name. The__________ method is used to convert an existing money value to a localized currency formatted output.

Full Access
Question # 9

Which of the following methods is used to associate multiple filters and validators, apply them to collections of data, and retrieve input values?

A.

Zend_Validate_Interface

B.

isValid()

C.

setMessage()

D.

Zend_Filter_Input

Full Access
Question # 10

All of the following are the basic steps in setting up a multi -lingual site, except for which one?

A.

Create the source file from the code

B.

Manipulate different adapters for translation

C.

Create the View and integrate Zend_Translate into the code

D.

Translate the source file to the desired language

Full Access
Question # 11

Fill in the blank with the appropriate method name. _________is used to make call of the remote methods in the same manner as native methods.

Full Access
Question # 12

Which of the following resource objects is used to support Zend_Acl?

A.

No

B.

Multiple

C.

Single

D.

Cyclic

Full Access
Question # 13

Which of the following clauses is used to specify a column or an array of columns by which to sort?

A.

Order By

B.

WHERE

C.

FROM

D.

LIMIT

Full Access
Question # 14

Which of the following joins retrieves all rows from one table and only the matching rows from the joined table?

A.

Self join

B.

Outer join

C.

Equijoin

D.

Non-equijoin

Full Access
Question # 15

Fill in the blank with the appropriate class name. _______ is a class that is used to create multilingual applications.

Full Access
Question # 16

You have a table created as follows:

create table foo (c1int, c2 char(30), c3 int, c4 char(10))

If column c1 is unique, which of the following indexes would optimize the statement given

below? Select distinct (c1), c3 from foo where c1=10

A.

create unique index foox on foo (c1) include (c3)

B.

create index foox on foo (c1)

C.

create index foox on foo (c1,c3)

D.

create unique index foox on foo (c1,c3)

Full Access
Question # 17

John works as a professional Ethical Hacker. He has been assigned a project to test the security of www.we-are-secure.com. On the We-are-secure login page, he enters ='o r''=' as a username and successfully logs in to the user page of the Web site. The We-are-secure login page is vulnerable to a __________.

A.

Land attack

B.

Replay attack

C.

Dictionary attack

D.

SQL injection attack

Full Access
Question # 18

Which of the following are the features of Zend_Layout? Each correct answer represents a complete solution. Choose all that apply.

A.

It is the configuration of layout name, inflection, and path.

B.

It can be used with ZF MVC components.

C.

It is used to disable layouts and change scripts.

D.

It has a separate scope for layout-related variables and content.

Full Access
Question # 19

A table named employees is given below:

Which of the following statements would return the employees names , in ascending order, based on their last name and first name? Each correct answer represents a complete solution. Choose all that apply.

A.

select fname, lname from employees order by lname;

B.

select fname, lname from employees order by lname desc;

C.

select fname, lname from employees group by lname;

D.

select fname, lname from employees order by lname asc;

Full Access