Which of the following is used to provide a tree structure onto which multiple resources can be added?
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 classes will you use to store objects and values in the application space?
Which of the following is an abstract class that is used to provide the basic interface and functionality required by the helper broker?
Which of the following joins retrieves all rows from one table and only the matching rows from the joined table?
Which of the following is used for separation of hierarchies in Zend_config_Ini file?
Write the appropriate word to complete the sentence below. ___________is used for logging of multiple backends, formatting messages which are sent to the log, and filtering those messages, which should not be logged.
Angela works as a Database Administrator for AznoTech Inc. She writes the following query:
SELECT Dept_Name, Emp_Name
FROM Departments d1, Employees e1
WHERE d1.Dept_No = e1.Dept_No
ORDER BY Dept_Name, Emp_Name;
Which of the following joins is used in this query?
Which of the following methods are used by Zend_Controller_Action_Helper_Abstract? Each correct answer represents a complete solution. Choose all that apply.
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 methods is used to change the session configuration options?
Which of the following are the features of Zend_Layout? Each correct answer represents a complete solution. Choose all that apply.