3 Months Free Update
3 Months Free Update
3 Months Free Update
Which of the following is used to persist the content between view scripts and view instances?
Which of the following steps will you take to apply Zend_View? Each correct answer represents a part of the solution. Choose all that apply.
Which of the following types of content is expected by Zend_Rest_Client when using a RESTservice?
Which of the following functions will be called if there is an HTTP "404 Not Found" error?
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?
Which of the following joins retrieves all rows from one table and only the matching rows from the joined table?
Fill in the blank with the appropriate method name. The__________ method is used to retrieve headers when the storage has been opened.
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.
Which of the following methods in Zend_Controller_Action can be used for resetting the state when multiple controllers use the same helper in the chained actions?
Fill in the blank with the appropriate method name. The__________ method is used to send an email in the HTML format.
Which of the following steps will you use to create a multi -lingual Website? Each correct answer represents a complete solution. Choose all that apply.
In which of the following situations will you use the set_exception_handler() function?
You run the following PHP script:
if (!$dom = domxml_open_mem($xmlstr)) {
echo "Error while parsing the XML document \n";
exit;
}
$a = **********
print_r($a);
?>
Which of the following functions will you use instead of * if you want to print the root element of the XML file?
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 methods of Zend_Auth returns TRUE if and only if the result represents a successful authentication attempt?
Which of the following are the methods that are used by Zend_Controller_Front? Each correct answer represents a complete solution. Choose all that apply.
Which of the following functions can be used as a countermeasure to a Shell Injection attack? Each correct answer represents a complete solution. Choose all that apply.
Consider the following code segment:
1.
2. require_once 'Zend/Mail.php';
3. ?????????????????????????
4. $mail->setBodyText('This is the test email.');
5. $mail->setFrom('somebody@example.com', 'Send er');
6. $mail->addTo('somebody_else@example.com', 'Recipient');
7. $mail->setSubject('TestSubject');
8. $mail->send();
9. ?>
Which of the following code snippets will you use at line number 3 to initiate Zend_Mail?
Which of the following are the features of Zend_Controller_Front? Each correct answer represents a complete solution. Choose all that apply.
Which of the following methods will you use to get the actual set language in Zend_Translateclass?
Which of the following allows a user to store the configuration data in a familiar INI format?
Fill in the blank with the appropriate method name. The________ method is used to check whether a date is valid or not.
You have created a table based on the following data:
EmpID NUMBER (5) PRIMARY KEYEmpName VARCHAR2 (35) NOT NULL Salary NUMBER (9, 2) NOT NULL CommissionNUMBER (4, 2) ManagerName VARCHAR2 (25) ManagerID NUMBER (5) Now, you wantto display the names of employees and their managers, using a self join.
Which of the following SQL statements can you use to accomplish this? Each correct answer represents a complete solution. Choose two.
Fill in the blank with the appropriate class name. The______ class is used to load files
dynamically.
Which of the following is a common feature of the Front Controller plugins and ActionHelpers?
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 methods can be used t o verify the authentication and ACLs prior to an action?
Which of the following error constants gives all errors and warnings, except the E_STRICTerror level?
Fill in the blank with the appropriate term. _______________is used to process all requests that are received by the server and then dispatch them to the appropriate action controllers.