Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Zend Framework Interview Questions and Answers

Ques 21. How can I customize the appearance of forms generated by Zend_Form?

You're probably looking for decorators. All forms and form elements in Zend_Form use decorators to render their output.

Is it helpful? Add Comment View Comments
 

Ques 22. Why does the Zend Framework project have a CLA at all?

The CLA protects all users including individuals, small and medium businesses, and large corporations. By having a CLA in place, we mitigate the risk that companies who claim intellectual property infringement may demand royalties or fees from users of Zend Framework, whether individuals or companies. This is especially important for companies basing their business or products on Zend Framework. The Zend Framework CLA helps to ensure that code and other IP in Zend Framework remains free.

Is it helpful? Add Comment View Comments
 

Ques 23. Should I sign an individual CLA or a corporate CLA?

If you are contributing code as an individual- and not as part of your job at a company- you should sign the individual CLA. If you are contributing code as part of your responsibilities as an employee at a company, you should submit a corporate CLA with the names of all co-workers that you foresee contributing to the project.

Is it helpful? Add Comment View Comments
 

Ques 24. What is Front Controller?

It used Front Controller pattern. zend also use singleton pattern.
=> routeStartup: This function is called before Zend_Controller_Front calls on the router to evaluate the request.
=> routeShutdown: This function is called after the router finishes routing the request.
=> dispatchLoopStartup: This is called before Zend_Controller_Front enters its dispatch loop.
=> preDispatch: called before an action is dispatched by the dispatcher.
=> postDispatch: is called after an action is dispatched by the dispatcher.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

©2024 WithoutBook