Labour Day Limited Time 60% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 2493360325

Good News !!! ZF-100-500 Zend Framework CertificationVersion 4.1 is now Stable and With Pass Result

ZF-100-500 Practice Exam Questions and Answers

Zend Framework CertificationVersion 4.1

Last Update 6 days ago
Total Questions : 128

ZF-100-500 is stable now with all latest exam questions are added 6 days ago. Just download our Full package and start your journey with Zend Framework CertificationVersion 4.1 certification. All these Zend ZF-100-500 practice exam questions are real and verified by our Experts in the related industry fields.

ZF-100-500 PDF

ZF-100-500 PDF (Printable)
$48
$119.99

ZF-100-500 Testing Engine

ZF-100-500 PDF (Printable)
$56
$139.99

ZF-100-500 PDF + Testing Engine

ZF-100-500 PDF (Printable)
$70.8
$176.99
Question # 1

Which of the following steps will you take to apply Zend_View? Each correct answer represents a part of the solution. Choose all that apply.

Options:

A.  

Transfer control of the display to the View Script.

B.  

Render the View.

C.  

Assign the variables to the View via a Controller Script.

D.  

Create an instance of the View.

Discussion 0
Question # 2

Which of the following methods will you use to retain the identity across requests according to the PHP session configuration?

Options:

A.  

isValid()

B.  

getIdentity()

C.  

Zend_Auth::authenticate()

D.  

getCode()

Discussion 0
Question # 3

You have to select persons whose age is between twenty -five and forty from a database named HumanResource. Which of the following criteria will you use in the query to accomplish thetask?

Options:

A.  

BETWEEN 25 AND 40

B.  

BETWEEN 25 TO 40

C.  

BETWEEN 25 - 40

D.  

BETWEEN 25 & 40

Discussion 0
Question # 4

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?

Options:

A.  

SELECT Stud.Student_ID, Cou.Course_ID FROM Students Stud, Courses Cou WHERE

Stud.Course_ID (+) = Cou.Course_ID;

B.  

SELECT Stud.Student_ID, Cou.Course_ ID FROM Students Stud, Courses Cou WHERE

Stud.Fees BETWEEN Cou.Min_Fees and Cou.Max_Fees;

C.  

SELECT Stud.Student_ID, Cou.Course_ID FROM Students Stud, Courses Cou WHERE

Stud.Course_ID = Cou.Course_ID;

D.  

SELECT Stud.Student_ID, Cou.Course_ID FROM Students Stud, Courses Cou WHERE

Stud.Student_ID = Cou.Course_ID;

Discussion 0
Question # 5

Fill in the blank with the appropriate term. ________is used to implement a classic Two -StepView pattern that allows a user to wrap the application content within another view.

Options:

Discussion 0
Question # 6

Which of the following modes is the default Fetch mode for Adapter classes and returns data in an associative array on which the keys are the column names?

Options:

A.  

Zend_Db::FETCH_BOTH

B.  

Zend_Db::FETCH_ASSOC

C.  

Zend_Db::FETCH_OBJ

D.  

Zend_Db::FETCH_COLUMN

Discussion 0
Question # 7

Which of the following code snippets will create a memory manager object?

Options:

A.  

$memoryManager = Zend_Memory:=>factory('None');

B.  

$memoryManager = Zend_Memoryfactory::None;

C.  

$memoryManager = Zend_Memory::factory.None;

D.  

$memoryManager = Zend_Memory::factory('None');

Discussion 0
Question # 8

Which of the following methods are used by Zend_Controller_Action_Helper_Abstract? Each correct answer represents a complete solution. Choose all that apply.

Options:

A.  

init()

B.  

preDispatch()

C.  

setActionController()

D.  

getResponseId()

Discussion 0
Question # 9

Which of the following are the limitations for the cross site request forgery (CSRF) attack?

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

Options:

A.  

The attacker must determine the right values for all the form inputs.

B.  

The target site should authenticate in GET and POST parameters, not only cookies.

C.  

The target site should have limited lifetime authentication cookies.

D.  

The attacker must target a site that doesn't check the referrer header.

Discussion 0
Question # 10

You run the following PHP script:

$name = mysql_real_escape_string($_POST["name"]);

$password = mysql_real_escape_string($_POST["password"]);

?>

What is the use of the mysql_real_ escape_string() function in the above script. Each correct answer represents a complete solution. Choose all that apply.

Options:

A.  

It can be used as a countermeasure against a SQL injection attack.

B.  

It escapes all special characters from strings $_POST["name"] and $_POST["password"]except ' and ".

C.  

It escapes all special characters from strings $_POST["name"] and $_POST["password"].

D.  

It can be used to mitigate a cross site scripting attack.

Discussion 0
Question # 11

Which of the following methods is used to change the session con figuration options?

Options:

A.  

Zend_Session::start()

B.  

Zend_config_options

C.  

Zend_Session_Namespace()

D.  

Zend_Session::setOptions()

Discussion 0
Question # 12

Which of the following can be used as a countermeasure against the SQL injection attack?

Each correct answer represents a complete solution. Choose two.

Options:

A.  

session_regenerate_id()

B.  

Prepared statement

C.  

mysql_escape_string()

D.  

mysql_real_escape_string()

Discussion 0
Question # 13

Which of the following is the temp late layer, where all the HTML rendering takes place, and where everything to be displayed to a user is assembled?

Options:

A.  

Controller

B.  

Model

C.  

Architecture

D.  

View

Discussion 0
Question # 14

Fill in the blank with the appropriate class name. The______ class is used to load files

dynamically.

Options:

Discussion 0
Question # 15

Consider the following code segment:

1.

2. require_once 'Zend/Mail.php';

3. ?????????????????????????

4. $mail->setBodyText('This is the test email.');

5. $mail->setFrom('somebody@example.com', 'Send er');

6. $mail->addTo('somebody_else@example.com', 'Recipient');

7. $mail->setSubject('TestSubject');

8. $mail->send();

9. ?>

Which of the following code snippets will you use at line number 3 to initiate Zend_Mail?

Options:

A.  

$mail = new Zend_Mail();

B.  

$mail => initialize_Zend_Mail();

C.  

$mail -> Zend_Mail();

D.  

$mail => Zend_Mail();

Discussion 0
Question # 16

You are using a database named SalesDB to keep all sales records. The SalesDB database contains a table named Orders. You are required to create a new t able named OldOrders and transfer all the data from the Orders table to the new table. Which of the following statements will you use to accomplish the task?

Options:

A.  

IMPORT INTO

B.  

INSERT INTO

C.  

ADD INTO

D.  

SELECT INTO

Discussion 0
Question # 17

Which of the following is a common feature of the Front Controller plugins and ActionHelpers?

Options:

A.  

Scope of layout variables

B.  

preDispatch() and postDispatch() hooks

C.  

Isolation of layout view script from other view scripts

D.  

Rendering of the layout

Discussion 0
Question # 18

Which of the following methods is triggered when a dispatched action is done even if apreDispatch() plugin has skipped the action and is mainly useful for cleanup?

Options:

A.  

getRequest()

B.  

postDispatch()

C.  

init()

D.  

getResponse()

Discussion 0
Question # 19

Fill in the blank with the appropriate method name. ________is a method to create REST server.

Options:

Discussion 0
Get ZF-100-500 dumps and pass your exam in 24 hours!

Free Exams Sample Questions