Which of the following is the method that is used to check whether the version required for running the application exists or not?
Which of the following are the configuration files that are used in Zend_Config?
Celina works as a Database Administrator for Tech Mart Inc. The company uses an Oracle database. The database contains a table named Employees. Following is the structure of the table:
EmpID NUMBER (5) PRIMARY KEY
EmpName VARCHAR2 (35) NOT NULL
Salary NUMBER (9, 2) NOT NULL
Commission NUMBER (4, 2)
ManagerName VARCHAR2 (25)
ManagerID NUMBER (5)
Celina wants to display the names of employees and their managers, using a self join. Which of the following SQL statements will she use to accomplish this?
Each correct answer represents a complete solution. Choose two.
Which of the following code snippets will you use to destroy a log if the variable $logger contains the log record?
You want to get the information of total number of documents stored in the index. You also want to include the deleted documents. Which of the following methods will you use to accomplish the task?
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);
}
Which of the following code snippets will you use to instantiate Zend_XmlRpc_Server?
Which of the following functions in SimpleXML can be used to return an iterator containing a list of all subnodes of the current node?
Which of the following clauses is used to specify a column or an array of columns by which to sort?
Martin works as a Database Administrator for MTech Inc. He designs a database that has a table named Products. He wants to create a report listing different product categories. He does not want to display any duplicate row in the report. Which of the following SELECT statements will Martin use to create the report?