Which of the following allows a user to store the configuration data in a familiar INI format?
Symonds works as a Database Administrator for Blue Well Inc. The company uses an Oracledatabase. The database contains a table named Employees. Following is the structure of the table:
EmployeeID NUMBER (5) PRIMARY KEY EmployeeName VARCHAR2 (35) NOT NULL Salary NUMBER (9, 2) NOT NULL Commission NUMBER (4, 2)
DepartmentID NUMBER (5)
Symonds queries the Employees table with the following statement:
SELECT e.EmployeeName, m.Salary
FROM Employees e, Employeesm
WHERE e.EmployeeID = m.EmployeeID;
Which of the following types of joins is used in the statement?
Which of the following modes is the default Fetch mode for Adapter classes and returns data in an associative array on which the keys are the column names?
Which of the following code segments can be used to check the form validity?
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 will you use to get the actual set language in Zend_Translateclass?
Which of the following retrieves the request URI, path, $_GET & $_POST parameters, etc. and tracks whether an action has been dispatched via Zend_Controller_Dispatcher?
Which of the following actions may fail if you have exceeded your quota limit?
Which of the following classes allows for the reporting of queries, including information on which queries were processed by the adapter?
Which of the following code snippets will you use to create a transport while considering the following PHP code segment?
<?php
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);
}