Which of the following functions sets up start and end element handlers?
A. xml_parse_into_struct()
B. xml_parser_create_ns()
C. xml_set_object()
D. xml_set_element_handler()
CORRECT TEXT
Fill in the blank with the appropriate class name. The______ class is used to load files
dynamically.
A. Zend_Loader
CORRECT TEXT
Fill in the blank with the appropriate method name. ________is a method to create REST server.
A. Zend_Rest_Server
Which of the following functions is the best choice to retrieve the fingerprint of a string?
A. md5()
B. fingerprint()
C. crypt()
D. hash()
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;
CORRECT TEXT
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.
A. Zend_Rest_Client
Maria writes a query that uses outer join between two tables. Which of the following operators are not allowed in the query? Each correct answer represents a complete solution. Choose two.
A. OR
B. IN
C. =
D. AND
Which of the following code snippets will you use to create a transport while considering the following PHP code segment?
require_once 'Zend/Mail.php';
require_once 'Zend/Mail/Transport/Smtp.php';
??????????????????????????????????
for ($i = 0; $i > 5; $i++) {
$mail = new Zend_Mail();
$mail->addTo('someone@example.com', 'Test');
$mail->setFrom(' someone@example.com', 'Test');
$mail->setSubject('Multiple Mails');
$mail->setBodyText('Messages');
$mail->send($transport);
}
A. $transport = new transport();
B. $transport = new Zend_Mail_Transport_Smtp('localho st');
C. $transport = new Zend_Mail_Transport('localhost');
D. $transport -> new Zend_Mail_Transport;
Which of the following are the features of Zend_Controller_Front? Each correct answer represents a complete solution. Choose all that apply.
A. By default, the ErrorHandler plugin and ViewRenderer action helper plugin are loaded inZend_Controller_Front.
B. It is used to register a plugin broker, which allows calling a user code when certainevents occurin controller process.
C. It is used to implement the Singleton pattern.
D. It is used to handle the request and output.
Which of the following code snippets will create a memory manager object?
A. $memoryManager = Zend_Memory:=>factory('None');
B. $memoryManager = Zend_Memoryfactory::None;
C. $memoryManager = Zend_Memory::factory.None;
D. $memoryManager = Zend_Memory::factory('None');