Which of the following methods of Zend_Auth returns TRUE if and only if the result represents a successful authentication attempt?
You work as a Database Administrator for Dolliver Inc. The company uses an Oracle database. The database contains two tables, named Employees and Departments. You want to retrieve all matched and unmatched rows from both the tables. Which of the following types of joins will you use to accomplish this?
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?
Symonds works as a Database Administrator for Blue Well Inc. The company uses an Oracle database. 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?
Fill in the blank with the appropriate method name.
The________ method is used to check whether a date is valid or not.
Which of the following is a common feature of the Front Controller plugins and Action Helpers?
Which of the following inherits from Zend_Log_Writer_Abstract and is responsible for saving data to storage?
Which of the following code snippets will you use if you want to connect to a Pop3 server using TLS?
Which of the following are the configuration files that are used in Zend_Config?
You have created a table based on the following data:
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)
Now, you want to 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.