Weekend Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

Which of the following is used to provide a tree structure onto which multiple resources can be added?

A.

Zend_Acl_Assert_Interface

B.

Zend_Acl_Assert

C.

Zend_Acl_Role

D.

Zend_Acl

Which component is used to offer an API to manipulate dates and times?

A.

Zend_Date

B.

Zend_Time

C.

Zend_Timezone

D.

Zend_Timestamp

Celina works as a Database Administrator for Tech Mart Inc. The company uses an Oracle database. The database contains a table named Employees. Following is the structure of the table:

EmpID NUMBER (5) PRIMARY KEY EmpName VARCHAR2 (35) NOT NULLSalary NUMBER (9, 2) NOT NULL Commission NUMBER (4, 2) ManagerNameVARCHAR2 (25) ManagerID NUMBER (5) Celina wants to display the names of employees and their managers, using a self join.

Which of the following SQL statements will she use to accomplish this? Each correct answer represents a complete solution. Choose two.

A.

SELECT e.EmpName, m.ManagerName

FROM Employees e, Employeesm

WHERE e.EmpID = m.ManagerID;

B.

SELECT e.EmpName, m.ManagerName

FROM Employees e INNER JOIN Employeesm

ON e.EmpID = m.ManagerID;

C.

SELECT e.EmpName, m.ManagerName

FROM Employees e LEFT OUTER JOIN Employees m

ON e.EmpID = m.ManagerID;

D.

SELECT e.EmpName, m.ManagerName

FROM Employees e SELF JOIN Employeesm

ON e.EmpID = m.ManagerID;

Which one of the following is used to manage the data within a memory -limited environment?

A.

Zend_Memory

B.

Zend_Cache

C.

Zend_Cache_Backend

D.

Zend_Memory_Backend

Which of the following statements correctly explain the working of Zend_Sera ch_Lucene?

Each correct answer represents a complete solution. Choose all that apply.

A.

It supports ranked searching, phrase queries, wildcard queries, and proximity queries.

B.

It is a text search engine.

C.

It requires the Zend_Db class to connect to a database server.

D.

It can also be used to search by any specific field, such as, title, author, etc.

Which method can be used to determine whether text within a source file has been translated in Zend_Translate?

A.

isLocatedAt()

B.

isLocated()

C.

isTranslated()

D.

isTranslatedAt()

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

Which of the following actions may fail if you have exceeded your quota limit?

A.

addTo()

B.

send()

C.

addBcc()

D.

appendMessage()