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 error constants gives all errors and warnings, except the E_STRICT error level?
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.
Which of the following clauses is used to specify a column or an array of columns by which to sort?
Which of the following code segments can be used to check the form validity?
Which method can be used to determine whether text within a source file has been translated in Zend_Translate?
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?
Fill in the blank with the appropriate term.
________is used to implement a classic Two-Step View pattern that allows a user to wrap the application content within another view.
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 is used to provide a tree structure onto which multiple resources can be added?