Pass the Zend Zend Certification 100-500 Questions and answers with CertsForce

Viewing page 2 out of 6 pages
Viewing questions 11-20 out of questions
Questions # 11:

Which of the following error constants gives all errors and warnings, except the E_STRICT error level?

Options:

A.

E_RECOVERABLE_ERROR


B.

E_ALL


C.

E_ERROR


D.

E_WARNING


Expert Solution
Questions # 12:

Which of the following are the methods that are used by Zend_Controller_Front?

Each correct answer represents a complete solution. Choose all that apply.

Options:

A.

dispatch()


B.

getInstance()


C.

controller()


D.

objectsetControllerDirectory()


Expert Solution
Questions # 13:

Fill in the blank with the appropriate term.

__________is used to process all requests that are received by the server and then dispatch them to the appropriate action controllers.

Options:

A.

Zend_Controller_Front


Expert Solution
Questions # 14:

Which of the following keywords will you use to set the default timezone?

Each correct answer represents a complete solution. Choose all that apply.

Options:

A.

date.timezone setting in php.ini


B.

set_default_timezone


C.

set_timezone


D.

date_default_timezone_set()


Expert Solution
Questions # 15:

Fill in the blank with the appropriate PHP function.

The_________ function is used to return the sum of the values of every entry within an array.

Options:

A.

array_sum()


Expert Solution
Questions # 16:

Which of the following is used to persist the content between view scripts and view instances?

Options:

A.

Action View Helpers


B.

Placeholder Helper


C.

Initial Helpers


D.

Partial Helper


Expert Solution
Questions # 17:

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.

Options:

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;


Expert Solution
Questions # 18:

Which of the following is used for separation of hierarchies in Zend_config_Ini file?

Options:

A.

.


B.

>


C.

,


D.

->


Expert Solution
Questions # 19:

Which of the following functions can you use to mitigate a command injection attack?

Each correct answer represents a complete solution. Choose all that apply.

Options:

A.

strip_tags()


B.

escapeshellarg()


C.

htmlentities()


D.

escapeshellcmd()


Expert Solution
Questions # 20:

Which of the following code snippets will you use to destroy a log if the variable $logger contains the log record?

Options:

A.

remove($logger);


B.

$logger=null;


C.

delete($logger);


D.

$logger->null;


Expert Solution
Viewing page 2 out of 6 pages
Viewing questions 11-20 out of questions