Zend 100-500 - Zend Framework Certification 5.0 Exam
Page: 1 / 41
Total 202 questions
Question #1 (Topic: )
Fill in the blank with the appropriate PHP function.
The_____________ function is used to replace the current session id with the new session
id, and to keep information of the current session.
The_____________ function is used to replace the current session id with the new session
id, and to keep information of the current session.
A. session_regenerate_id()
Answer: A
Question #2 (Topic: )
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.
statements will she use to accomplish this?
Each correct answer represents a complete solution. Choose two.
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.
statements will she use to accomplish this?
Each correct answer represents a complete solution. Choose two.
A. SELECT e.EmpName, m.ManagerName FROM Employees e, Employeesm WHERE e.EmpID = m.ManagerID;
B. SELECT e.EmpName, m.ManagerName FROM Employees e INNER JOIN Employeesm ON e.EmpID = m.ManagerID;
C. SELECT e.EmpName, m.ManagerName FROM Employees e LEFT OUTER JOIN Employees m ON e.EmpID = m.ManagerID;
D. SELECT e.EmpName, m.ManagerName FROM Employees e SELF JOIN Employeesm ON e.EmpID = m.ManagerID;
Answer: A,B
Question #3 (Topic: )
Which of the following actions may fail if you have exceeded your quota limit?
A. addTo()
B. send()
C. addBcc()
D. appendMessage()
Answer: D
Question #4 (Topic: )
Which of the following code snippets will you use to instantiate Zend_XmlRpc_Server?
A. $server = Zend_Xml::Zend_XmlRpc_Server()
B. $server = new Zend_Xml();
C. $server = new Zend_XmlRpc_Server();
D. $server = create_new_Zend_XmlRpc_Server()
Answer: C
Question #5 (Topic: )
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.
___________is used for logging of multiple backends, formatting messages which are sent
to the log, and filtering those messages, which should not be logged.
A. Zend_Log
Answer: A