Which of the following are the features of Zend_Controller_Front?
Each correct answer represents a complete solution. Choose all that apply.
You have given the following XML data in the tasks.XML file:
Now, you run the following PHP script:
<?php
$objDOM = new DOMDocument();
$objDOM->load("tasks.xml");
$note = $objDOM->getElementsByTagName("note");
foreach( $note as $value )
{
$tasks = $value->getElementsByTagName("tasks");
$task = $tasks->item(0)->nodeValue;
$details = $value->getElementsByTagName("details");
$detail = $details->item(0)->nodeValue;
echo "$task :: $detail
";
}
?>
What should be displayed when this script is executed?
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?
Which of the following code segments can be used to check the form validity?
Which of the following types of content is expected by Zend_Rest_Client when using a REST service?
Which of the following code snippets will you use to instantiate Zend_XmlRpc_Server?
Which of the following statements describes the use of a GROUP BY clause?
Which of the following methods is triggered when a dispatched action is done even if a preDispatch() plugin has skipped the action and is mainly useful for cleanup?
Which of the following OOPS design patterns is used to encapsulate a data source so that accessing the data source components becomes hidden within the class that implements the pattern?
Which of the following is an example of a database connection that needs to be created once at the beginning of a script and then used throughout its code?