A. <parent> <label translate="true">Value</label> </parent> B. <parent translate="label"> <label>Value</label> </parent> C. <parent> <label><translate>Value</translate></label> </parent> D. <parent> <translate> <label>Value</label> </translate> </parent>
In a fresh installation of native Magento, the email templates are stored in the _________________.
A. email folder of the current theme B. app/design/email folder C. app/locale/_LOCALE_/template/email folder D. app/design/base/default/default/template/email folder
Assume you have three models A, B and C. Both A and B extend C. Assume C contains a method that you are going to change in both A and B. How can you change the method using Magento class rewrites.
A. Rewrite class C using the xpath global/models/MODULE/rewrite/C B. Rewrite the method using the xpath global/models/YOUR_MODULE/rewrite/C/METHOD C. You must rewrite both A and B using the xpaths global/models/MODULE/rewrite/A and global/models/MODULE/rewrite/B D. You must change that method directly in C
Which of the following is called to apply taxes on the product view page?
A. Mage_Tax_Helper_Dat B. Mage_Tax_Model_Sales_Total_Quote_Tax C. Mage_Sales_Model_Quote_Address_Total_Tax D. Mage_Catalog_Model_Product_Type_Price
Which of the following does NOT return an instance of a helper object?
A. Mage::app()->getLayout()->helper('customer'); B. Mage::helper('customer'); C. Mage::app()->helper('customer'); D. Mage::app()->getLayout()->createBlock('core/template')->helper('customer');