Corporate Training
Request Demo
Click me
Menu
Let's Talk
Request Demo

Zend Framework Interview Questions and Answers

by Venkatesan M, on May 17, 2017 11:53:50 AM

Zend Framework Interview Questions and Answers

Q1. What is a Framework?

Ans: In software development, a framework is a defined support structure in which another software project can be organized and developed.

  1. An abstract design
  2.  Set of common functionality
  3.  Developed for a particular domain

 Q2. How to disable layout from controller?

Ans: $this->_helper->layout()->disableLayout();

Disable Zend Layout from controller for Ajax call only
if($this->getRequest()->isXmlHttpRequest()){

$this->_helper->layout()->disableLayout();

}

Q3. How to change the View render file from controller?

Ans: function listAction(){

//call another view file file

$this->render("anotherViewFile");

}

Q4. How to protect your site from sql injection in zend when using select query?

Ans: $select = $this->select()

from(array('u' => 'users'), array('id', 'username'))

where('name like ?',"%php%")

where('user_id=?','5')

where('rating<=?',10);

Q5. How to check post method in zend framework?

Ans: if($this->getRequest()->isPost()){

//Post

}else{

//Not post

}

Q6. How to get all POST data?

Ans: $this->getRequest()->getPost();

Q7. How to get all GET data?

Ans: $this->getRequest()->getParams();

Q8. How to redirect to another page from controller?

Ans: $this->_redirect('/users/login');

Q9. How to get variable's value from get?

Ans: $id= $this->getRequest()->getParam('id');

Q10. Create Model file in zend framework?

Ans: class Application_Model_Users extends Zend_Db_Table_Abstract {

protected $_name = "users";

protected $_primary = "id";

}

Q11. How to create object of Model?

Ans: $userObj = new Application_Model_Users();

Q12. Which Class extend the Zend Controller?

Ans: Zend_Controller_Action

For Example:
class AjaxController extends Zend_Controller_Action {

}

Q13. Which Class extend the zend Model?

Ans: Zend_Db_Table_Abstract

For Example :
class Application_Model_Users extends Zend_Db_Table_Abstract { }

Q14. What is a framework?

Ans: In software development, a framework is a defined support structure in which another software project can be organized and developed.

 

Q15. Why should we use framework?

Ans: Framework is a structured system where we get following things

  1. Rapid application development(RAD).
  2. Source codes become more manageable.
  3. Easy to extend features.

Q16. Where we set configuration in zend framework?

Ans: We set the config in application.ini which is located in application/configs/application.ini.

Q17. What is Front Controller?

Ans: It used Front Controller pattern. zend also use singleton pattern.

  1. routeStartup: This function is called before Zend_Controller_Front calls on the router to evaluate the request.
  2. routeShutdown: This function is called after the router finishes routing the request.
  3. dispatchLoopStartup: This is called before Zend_Controller_Front enters its dispatch loop.
  4. preDispatch: called before an action is dispatched by the dispatcher.
  5.  postDispatch: is called after an action is dispatched by the dispatcher.

Q18. What is full form of CLA in Zend Framework?

Ans: Contributor License Agreement

Q19. Should I sign an individual CLA or a corporate CLA?

Ans: 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.

Q20. How to include js from controller and view in Zend?

Ans: From within a view file: $this->headScript()->appendFile('filename.js'); From within a controller: $this->view->headScript()->appendFile('filename.js'); And then somewhere in your layout you need to echo out your headScript object: $this->headScript();

Q21. What are Naming Convention for PHP File?

Ans:
  1. There should not any PHP closing tag (?>)in controller & Model file.
  2. Indentation should consist of 4 spaces. Tabs are not allowed.
  3. The target line length is 80 characters, The maximum length of any line of PHP code is 120 characters.
  4.  Line termination follows the Unix text file convention. Lines must end with a single linefeed (LF) character.                  Linefeed characters are represented as ordinal 10, or hexadecimal 0x0A
  5.  

Q22. What Zend Acl?

Ans: Based on the zend authentication it allows the user to access certain actions.

Q23. How to use update statemnet in Zend Framework?

Ans: class Application_Model_Users extends Zend_Db_Table_Abstract

{

protected $_name = 'users';

protected $_primary = 'id';

function updateData($updateData = array()) {

//please update dynamic data

$this->update(array('name' => 'arun', 'type' => 'user'), array('id=?' => 10));

}

}

Q24. How we can do multiple column ordering in Zend Framework?

Ans: class Application_Model_Users extends Zend_Db_Table_Abstract {

protected $_name = 'users';

protected $_primary = 'id';

function users() {

$select = $this->select()

->setIntegrityCheck(false)

->from(array('u' => 'users'), array('name as t_name'))->order('first_name asc')->order('last_name des');

return $this->fetchAll($select);

}

}

Q25. Why should we use framework?

Ans: Framework is a structured system

  1. Source codes become more manageable
  2. Easy to extend features
  3. Rapid application development

Q26. Configuration in Zend Framework, application.ini file?

Ans: Configuration can be done in application.ini file in Zend framework. This file in the path application/configs/application.ini.

Q27. Checking whether form posted or not in Zend framework?

Ans: if($this->getRequest()->isPost()){ echo "Form posted"; }

Q28. Does Zend Framework support PHP 4?

Ans: No. Zend Framework was built to use all of the sophisticated object oriented features of PHP 5 and take advantage of significant performance and security enhancements.

Q29. What is Bootstrapping?

Ans: Many PHP applications funnel server requests into a single (or few) PHP source file that sets up the environment and configuration for the application, manages sessions and caching, and invokes the dispatcher for their MVC framework. They can do more, but their main job is to take care of the consistent needs of every page of a web application.
In our Blueprint for PHP Applications, we will have a core bootstrapper that receives all dynamic requests for an application and applies a template for application behavior that we can later extend. It will allow us to later customize the functionality for each unique application.

Q30. What is zend engine?

Ans: Zend Engine is used internally by PHP as a complier and runtime engine. PHP Scripts are loaded into memory and compiled into Zend opcodes.

Q31. What is zend engine in PHP?

Ans: Zend engine is like a virtual machine and is an open source, and is known for its role in automating the web using PHP. Zend is named after its developers Zeev and Aandi. Its reliability, performance and extensibility has a significant role in increasing the PHP’s popularity. The Zend Engine II is the heart of PHP 5. It is an open source project and freely available under BSD style license.

Q32. What is routing and how it's work?

Ans: Zend_Controller_Router_Rewrite is the standard framework router. Routing is the process of taking a URI endpoint (that part of the URI which comes after the base URL) and decomposing it into parameters to determine which module, controller, and action of that controller should receive the request. This values of the module, controller, action and other parameters are packaged into a Zend_Controller_Request_Http object which is then processed by Zend_Controller_Dispatcher_Standard. Routing occurs only once: when the request is initially received and before the first controller is dispatched.

Zend_Controller_Router_Rewrite is designed to allow for mod_rewrite-like functionality using pure PHP structures. It is very loosely based on Ruby on Rails routing and does not require any prior knowledge of webserver URL rewriting. It is designed to work with a single Apache mod_rewrite rule.

Q33. What are Plugins in zend framework?

 Ans: Triggered by front controller events
 Events bookend each major process of the front controller
 Allow automating actions that apply globally
Creating Plugins:
 Extend Zend_Controller_Plugin_Abstract
 Extend one or more of the event methods

Q34. Zend_Cache provides a generic way to cache any data.

Ans: Caching in Zend Framework is operated by frontends while cache records are stored through backend adapters (File, Sqlite,Memcache...) through a flexible system of IDs and tags. Using those, it is easy to delete specific types of records afterwards (for example: "delete all cache records marked with a given tag").
The core of the module (Zend_Cache_Core) is generic, flexible and configurable. Yet, for your specific needs there are cache frontends that extend Zend_Cache_Core for convenience: Output, File, Function and Class.

Q35. Difference between Zend_Registry and Zend_Session?

Ans: The basic difference between these objects is the ‘scope’ in which they are valid:

a) Zend_Registry : request scope
b) Zend_Session : session scope

a) Zend_Registry is used to store objects/values for the current request. In short, anything that you commit to Registry in index.php can be accessed from other controllers/actions (because EVERY request is first routed to the index.php bootstrapper via the .htaccess file). Config parameters and db parameters are generally prepped for global use using the Zend_Registry object.

b) Zend_Session actually uses PHP sessions. Data stored using Zend_Session can be accessed in different/all pages. So, if you want to create a variable named ‘UserRole’ in the /auth/login script and want it to be accessible in /auth/redirect, you would use Zend_Session.

Q36. When do we need to disable layout?

Ans: At the time of calling AJAX to fetch we need to disable layout.
$this->_helper->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender(true);

Q37. Where is the model in ZF’s MVC implementation?

Ans: The model component can vary dramatically in responsibilities and data store from one MVC application to the next.

Q38. How to call two different views from same action?

Ans:

Example1:
Public function indexAction() {
If(condition)
$this->render(‘yourview.phtml’);
Else
Index.phtml;

Example2:
Public function indexAction() {
}
Now in your index.phtml you can have this statement to call other view
$this->action(‘action name’,’controller name’,’module name’,array(‘parameter name’=>’parameter value’));

Q39. How to include css from controller and view in zend.

Ans: From within a view file: $this->headLink()->appendStylesheet(‘filename.css’);
From within a controller: $this->view->headLink()->appendStylesheet(‘filename.css’);
And then somewhere in your layout you need to echo out your headLink object:
headLink();?>

Q40. How do you protect your site from sql injection in zend when using select query?

Ans: You have to quote the strings,

$this->getAdapter ()->quote ( );
$select->where ( ” = “, );
OR (If you are using the question mark after equal to sign)
$select->where ( ” = ? “, );

Q41. What is MVC?

Ans:

  1.  Model-View-Controller development pattern.
  2.  MVC is a software approach that separates application logic from presentation.

Q42. Features of MVC in Zend Framework?

Ans:

  1.  Declare custom routing rulesNot limited to “controller/action/param” format
  2.  Optional Controller Plugins, Action Helpers, and View HelpersErrorHandler plugin handles exceptions, 404 errors, etc.FlashMessenger, Redirector, ViewRenderer helpersOutput common HTML elements in views
  3. Extensible interfaces

Q43. Why can't Zend_Form render my File element without errors?

Ans: The file element needs a special file decorator, which is added by default. When you set your own decorators for file elements, you delete the default decorators.
For example:
$element->setDecorators(array(
array('ViewHelper'),
array('Errors')
));
You should use a File decorator instead of the ViewHelper for the file element, like so:
$element->setDecorators(array(
array('File'),
array('Errors')
));

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

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

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

Ans: 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.

Q46. Should I sign an individual CLA or a corporate CLA?

Ans: 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.

Q47. Name some Important component in zend framework?

Ans: Gives the request & reponse methods by using its sub-classes.

$request = new Zend_Controller_Request_Http()
$response = new Zend_Controller_Response_Http()

Uses of Zend_Date
Date related processing can be done using this component.

Uses of Zend_File_Transfer
it provides extensive support for file uploads and downloads.

Uses of Zend_Db
It is used to doing database related purpose in our appication.

Uses of Zend_Paginator
Doing the pagination in our application.

Uses of Zend_Auth
It is used to authenticate a user.

$auth = Zend_Auth::getInstance();
$results = $auth->authenticate($adapter);
if ($results->isValid()){
}

Zend_Session_Namespace
This is a simple proxy class to use API into the Zend_Session managed $_SESSION Superglobal.

Q48. ZF  component library and framework?

 
Ans: Zend Framework provides all the components required for most web applications in a single distribution. But Zend Framework components are also loosely coupled, making it easy to use just a few components in a web application- even alongside other frameworks! Using this use-at-will architecture, we are implementing features commonly found in more monolithic frameworks. In fact, we are currently working on a tooling component for the 1.8 release that will make it simpler to build applications using ZF components, yet will not sacrifice the use-at-will nature of existing ZF components.
 

Q49. What is autoloader in Zend framework?

 
Ans: Auto loader is function that load all the object on start up.
 

Q50. What is the use of Bootstrap in zend framework?

 
Ans: Apart from index if we want to do any extra configuration regarding database and other things that is done within bootstrap.

 

For Zend Framework Course 

 

Topics:zend frameworkzend framework interview questionsInformation Technologies (IT)

Comments

Subscribe

Top Courses in Python

Top Courses in Python

We help you to choose the right Python career Path at myTectra. Here are the top courses in Python one can select. Learn More →

aathirai cut mango pickle

More...