CORRECT TEXT
Fill in the blank with the appropriate PHP function. The_____________ function is used to replace the current session id with the new session id, and to keep information of the current session.
A. session_regenerate_id()
Which of the following methods of Zend_XmlRpc_Client can you use to instantiate a server proxy call?
A. call()
B. getLastResponse()
C. getProxy()
D. XMLResponse
Which of the following statements correctly explains the behavior of Zend_Controller_Front? Each correct answer represents a complete solution. Choose all that apply.
A. It registers a plug-in broker with itself.
B. It uses the Singleton pattern.
C. It processes all requests received by the server.
D. The Zend_Controller_Front never loads any plugin by default.
Which of the following retrieves the request URI, path, $_GET and $_POST parameters, etc. and tracks whether an action has been dispatched via Zend_Controller_Dispatcher?
A. Zend_Controller_Get_Request
B. Zend_Controller_Router
C. Zend_Controller_Request_Abstract
D. Zend_Controller_Response_Abstract
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;
Which of the following error constants gives all errors and warnings, except the E_STRICTerror level?
A. E_RECOVERABLE_ERROR
B. E_ALL
C. E_ERROR
D. E_WARNING
CORRECT TEXT
Fill in the blank with the appropriate PHP function. The_________ function is used to return the sum of the values of every entry within an array.
A. _sum()
You want to set the form method in post and action to /uc/zend.php when you are using the Zend_Form class. Which of the following code snippets will you use to accomplish the task?
A. Zend::setAction('/uc/zend.php') ->Zend::setMethod('post');
B. ('/uc/zend.php') ->('post');
C. ";
D. setAction('/uc/zend.php') ->setMethod('post');
Which property is used to operate the memory object data?
A. object
B. data
C. method
D. value
Which method is used to store the cache records into a SQLite database?
A. Zend_Cache_Backend_Sqlite
B. Zend_Cache_cache_Sqlite
C. Zend_Cache_file_ Sqlite
D. Zend_Cache_read_Sqlite