Magento Interview Questions And Answers

Magento Interview Questions list for experienced

  1. What Is Magento ?
  2. Explain Magento Versions and License
  3. What The History Behind Magento ?
  4. Explain features use of Magento
  5. what is EAV in Magento?
  6. How Magento's MVC architecture works:
  7. How Magento ORM works?
  8. what is Difference between Magento function getSingleton() and getModel()
  9. How to improve magento performance?
  10. What is benefit of namespace (package) in magento?
  11. How to include CMS block in template file(.phtml)?
  12. How to add an external javascript or css file to Magento?
  13. What are handles in magento (layout)?
  14. How to upgrade to the latest version using Magento Connect?
  15. Why magento is slow ?
  16. What are the addAttributeToFilter Conditionals in Magento?
  17. What permissions required for file and folder In Magento ?
  18. How to change Currency in INR in magento ?
  19. How To Add Blog In Magento?
  20. How to add review list on product page of Magento?
  21. How to run custom MySql query in Magento ?
  22. How to add Custom javascript and css file in magento
  23. How To Create a Featured Product?
  24. How too reset admin password in magento ?
  25. What is the latest version of magento?
  26. how to change any page title in magento?
  27. How to add a home link to the menu bar?
  28. How to add an RSS feed in magento?
  29. How to integrate JW Image Rotator 3.17 in megento?
  30. How to create a new page in magento?
  31. How to add Lightbox2 in magento?
  32. How to Add an accepted payment banner at the footer?
  33. How can we Create a custom \"Twitter handle\" field in a registration form?

Magento interview questions and answers on advance and basic Magento with example so this page for both freshers and experienced condidate. Fill the form below we will send the all interview questions on Magento also add your Questions if any you have to ask and for apply in Magento Tutorials and Training course just send a mail on info@pcds.co.in in detail about your self.

Top Magento interview questions and answers for freshers and experienced

What is Magento ?

Answer : Magento interview question and answers for all ecommerse developer

Questions : 1 :: What Is Magento ?

Magento is a  open source eCommerce platform for a complete eCommerce web site solution. Magento’s open source architecture enables the user to maintain complete control over the...View answers

Questions : 2 :: Explain Magento Versions and License

There are currently two versions of Magento: the Magento Community Edition and the Magento Enterprise Edition. The Magento Community Edition is licensed under the Open Software License (OSL) v3.0....View answers

Questions : 3 :: What The History Behind Magento ?


Varien began developing Magento in January of 2007. It was their vision to establish an eCommerce platform unlike anything else on the market. Varien originally planned on building an eCommerce...View answers

Questions : 4 :: Explain features use of Magento

In addition to a solid architecture and framework, there are several unique reasons why Magento makes a great choice for an eCommerce solution. • One of the most amazing features about Magento...View answers

Questions : 5 :: what is EAV in Magento?

EAV means Entity Attribute Value this allows us to add unlimited columns or attributes  to our table virtually. Means, the fields which is represented in “column” way in a regular...View answers

Questions : 6 :: How Magento's MVC architecture works:


MVC means Model, View and Controller. so any architecture use to separates their business logic and user interface known as MVC it two type convention-based in this just need to follow the...View answers

Questions : 7 :: How Magento ORM works?

ORM stands for Object Relational Mapping. It’s a programming technique used to convert different types of data to Objects and vice versa. In Magento, ORM is shown as Model (based on Zend...View answers

Questions : 8 :: what is Difference between Magento function getSingleton() and getModel()

The difference between Mage:getSingleton() and Mage::getModel() is that the former one does not create an object if the object for same class is already created, while the later creates new objects...View answers

Questions : 9 :: How to improve magento performance?


Enabled magento caching MySQL Query caching Enable Gzip Compression Disable any unused modules Disable the Magento log Optimise your images Combine external CSS/JS into one file Enable Apache...View answers

Questions : 10 :: What is benefit of namespace (package) in magento?

you can have more than one module with same name but they should be placed in different namespaces. All magento core modules are contained in mage namespace. And Magento search module in order by...View answers

Questions : 11 :: How to include CMS block in template file(.phtml)?

Access blocks content from .phtml template file by : echo $this->getLayout()->createBlock("cms/block")->setBlockId("static_block_id")->toHTML();

Questions : 12 :: How to add an external javascript or css file to Magento?

To add an external javascript or css file to Magento is too much easy as we can add this in any of below tow ways in xml layout file in given like in <catelog_product_view> part we an add...View answers

Questions : 13 :: What are handles in magento (layout)?

Handles are basically used for controlling the structure of the page like which block will be displayed and where. First level child elements of the node are called layout handles. Every page request...View answers

Questions : 14 :: How to upgrade to the latest version using Magento Connect?

Upgrading Magento to the latest version is a fairly simple task. Copy and Paste this key magento-core/Mage_All_Latest VIA Magento Connect where it states Paste extension key to install:. This will...View answers

Questions : 15 :: Why magento is slow ?

Magento is slow due to below thing  1. EAV structure of magento database, even for retrieving single entity the query becomes very complex . 2. Magento’s template system involves a lot...View answers

Questions : 16 :: What are the addAttributeToFilter Conditionals in Magento?

In Magento we can use addAttributeToFilter Conditions same as WHERE in SQL  Below are the all condtions    Equals:...View answers

Questions : 17 :: What permissions required for file and folder In Magento ?

A security Issue happen if Setting all the files & folders to 777 will make them writable by everyone.! Normal Operation For the normal operation or installation of a Magento store, only...View answers

Questions : 18 :: How to change Currency in INR in magento ?

In Magento, Currency change is very easy just we need to follow below step  From the Admin panel, select System > Configuration. From the Configuration panel on the left, under General,...View answers

Questions : 19 :: How To Add Blog In Magento?

To add Blog in Magento we just need to get magento connect extension key and follow below step In admin panel  system>magento connect>Magento connect manager    and then...View answers

Questions : 20 :: How to add review list on product page of Magento?

To Add Review List on mageto product page we have to do below few step    First of all we need to open catalog.xml in Layout folder of used design theme and then we have to...View answers

Questions : 21 :: How to run custom MySql query in Magento ?

To write custom SQl query in magento is very easy we have to just need to...View answers

Questions : 22 :: How to add Custom javascript and css file in magento

It's much important for Magento theme developer to add their own external js and css file so that they can use custom JavaScript and css and it much easier in Magento to add this. as just you needto...View answers

Questions : 23 :: How To Create a Featured Product?

We are gooing to add Fueture product on our magento store as The Featured Product is a product with an attribute added from the administrative UI. When the administrator selects Yes in the...View answers

Questions : 24 :: How too reset admin password in magento ?

If we forget admin password and want to update this admin password then we have to just do litil bet effort  just  need to run below query on our sql database SELECT * FROM...View answers

Questions : 25 :: What is the latest version of magento?

Latest version of magento is 1.9.0.1 - Added on  May 16, 2014

Questions : 26 :: how to change any page title in magento?

Fire up your IDE and open the Magento project. Now expand the following directory: app/design/frontend/YOUR_PACKAGE/YOUR_THEME. In my case, it is: app/design/frontend/base/default We will change the...View answers

Questions : 27 :: How to add a home link to the menu bar?

Magento has a strong caching mechanism to serve the pages faster. By default, Magento setsthe caching as enabled. We have to disable the caching feature to view the changes afternecessary...View answers

Questions : 28 :: How to add an RSS feed in magento?

We will use Zend_Feed_Rss library to parse the RSS feed, which came with Magento andZend Framework. Open your favorite PHP IDE and fire up the Magento project. 1. Create a new file named...View answers

Questions : 29 :: How to integrate JW Image Rotator 3.17 in megento?

Grab the latest release of JW Image Rotator from http://www.longtailvideo.com/players/jw-image-rotator/. 1. Extract the downloaded files and copy the imagerotator.swf in the /media/content/flash/...View answers

Questions : 30 :: How to create a new page in magento?

Creating a new page in Magento is pretty easy to do. In this recipe, we are going to create anew page and add it to the footer block by using Magento CMS. Log in to Magento admin panel for creating...View answers

Questions : 31 :: How to add Lightbox2 in magento?

"Lightbox is a simple, unobtrusive script used to overlay images on the current page. It's asnap to setup and works on all modern browsers." Go and grab a copy of Lightbox2 from...View answers

Questions : 32 :: How to Add an accepted payment banner at the footer?

Collect required specific credit card icons, for instance, the icons of a regional bank in yourcountry; make sure to visit the official site of the bank first to get the most recent icons. Theyare...View answers

Questions : 33 :: How can we Create a custom "Twitter handle" field in a registration form?

Let's fire up our IDE and open the Magento project, where we will write some code for addingthe Twitter handle registration field. 1. Magento uses the Entity-Attribute-Value (EAV) data model for...View answers
More Question

Ask your interview questions on Magento

Write Your comment or Questions if you want the answers on Magento from Magento Experts
Name* :
Email Id* :
Mob no* :
Question
Or
Comment* :
 





Disclimer: PCDS.CO.IN not responsible for any content, information, data or any feature of website. If you are using this website then its your own responsibility to understand the content of the website

--------- Tutorials ---