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

Zend 100-500 - Zend Framework Certification

Page: 2 / 6
Total 202 questions

Which of the following functions will be called if there is an HTTP "404 Not Found" error?

A.

Zend_XmlRpc_Client_FaultException

B.

Zend_XmlRpc_Client_Fault_404_Exception

C.

Zend_XmlRpc_Client_HttpException

D.

Zend_XmlRpc_Client_404Exception

Fill in the blank with the appropriate class name.

________is a class that is used to create multilingual applications.

A.

Zend_Translate

Ross creates a database for a school. He creates two tables named Students and Courses. Which of the following SELECT statements will he use to define an outer join?

A.

SELECT Stud.Student_ID, Cou.Course_ID

FROM Students Stud, Courses Cou

WHERE Stud.Course_ID (+) = Cou.Course_ID;

B.

SELECT Stud.Student_ID, Cou.Course_ID

FROM Students Stud, Courses Cou

WHERE Stud.Fees BETWEEN Cou.Min_Fees and Cou.Max_Fees;

C.

SELECT Stud.Student_ID, Cou.Course_ID

FROM Students Stud, Courses Cou

WHERE Stud.Course_ID = Cou.Course_ID;

D.

SELECT Stud.Student_ID, Cou.Course_ID

FROM Students Stud, Courses Cou

WHERE Stud.Student_ID = Cou.Course_ID;

Which of the following methods dynamically loads the Adapter class file on demand using Zend_Loader::loadClass()?

A.

Zend_Db_Adapter_Pdo_Mysql()

B.

Zend_load_Adaptor()

C.

fetchAll()

D.

Zend_Db::factory()

Which of the following classes allows for the reporting of queries, including information on which queries were processed by the adapter?

A.

Zend_Db_Profiler

B.

Zend_Loader

C.

Zend_Db

D.

Zend_Db_Select

Which of the following is used for separation of hierarchies in Zend_config_Ini file?

A.

->

B.

.

C.

,

D.

>

Fill in the blank with the appropriate term.

________is used to implement a classic Two-Step View pattern that allows a user to wrap the application content within another view.

A.

Zend_Layout

Martin works as a Database Administrator for MTech Inc. He designs a database that has a table named Products. He wants to create a report listing different product categories. He does not want to display any duplicate row in the report. Which of the following SELECT statements will Martin use to create the report?

A.

SELECT DISTINCT Product_No, Prod_Category

FROM Products;

B.

SELECT Product_No, Prod_Category

FROM Products;

C.

SELECT Product_No, Prod_Category

FROM Products

GROUP BY Product_No ORDER BY Product_No;

D.

SELECT Product_No, Prod_Category

FROM Products

GROUP BY Product_No;

Which of the following methods sends log data to a PHP stream?

A.

Zend_Log_Writer_Stream

B.

Zend_Log_Writer_Filestream

C.

Zend_Log_Writer_Abstract

D.

Zend_Log_Writer_Db

Which of the following is used to render a specific template within its own variable scope?

A.

Action View Helpers

B.

Initial Helpers

C.

Partial Helpers

D.

View Helpers