Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: xmas50

Zend ZF-100-500 - Zend Framework CertificationVersion 4.0

Page: 1 / 4
Total 130 questions

Which inheritance does Zend_Acl support among Resource objects?

A.

Multiple

B.

It does not support any type of inheritance.

C.

Single

D.

Cyclic

Which of the following is used to create a new Memory Manager?

A.

Zend_Memory::factory()

B.

Zend_Memory->NewMemoryManager()

C.

Zend_Memory->factory()

D.

Zend_Memory::NewMemoryManager()

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

A.

Zend_Session::start()

B.

Zend_Session::setOptions()

C.

Zend_Session_Namespace()

D.

Zend_config_options

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

A.

isValid()

B.

getIdentity()

C.

Zend_Auth::authenticate()

D.

getCode()

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?

A.

IMPORT INTO

B.

INSERT INTO

C.

ADD INTO

D.

SELECT INTO

Which of the following methods dynamically loads the Adapter class file on demand using Zend_Loader::loadClass()?

A.

Zend_Db_Adapter_Pdo_Mysql()

B.

Zend_load_Adaptor()

C.

fetchAll()

D.

Zend_Db::factory()

You have a table created as follows:

create table foo (c1int, c2 char(30), c3 int, c4 char(10))

If column c1 is unique, which of the following indexes would optimize the statement given

below? Select distinct (c1), c3 from foo where c1=10

A.

create unique index foox on foo (c1) include (c3)

B.

create index foox on foo (c1)

C.

create index foox on foo (c1,c3)

D.

create unique index foox on foo (c1,c3)

Which of the following statements correctly explains the behavior of Zend_Controller_Front?

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

A.

It registers a plug-in broker with itself.

B.

It uses the Singleton pattern.

C.

It processes all requests received by the server.

D.

The Zend_Controller_Front never loads any plugin by default.

Which of the following methods will you use to create movable objects?

A.

Zend_Memory_Manager::createLocked([$data])

B.

Zend_Memory_Manager::create([$data])

C.

getMemoryLimit()

D.

setMemoryLimit($newLimit)

Which of the following statements correctly explain the working of Zend_Sera ch_Lucene?

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

A.

It supports ranked searching, phrase queries, wildcard queries, and proximity queries.

B.

It is a text search engine.

C.

It requires the Zend_Db class to connect to a database server.

D.

It can also be used to search by any specific field, such as, title, author, etc.