How can you make a payment method store entire credit card numbers?
A. For security reasons, there are no native ways for doing that.
B. Pass the credit card number to the payment method: it will be stored automatically.
C. Change the protected property of payment method $_canSaveCc to true.
D. Configure your method to save the card number by setting 1 to the following xpath: default/payment/_NAME_/save_cc
By enabling Flat catalog, you will ____________.
A. speed up performance on the frontend
B. speed up saving product on the backend
C. simplify the product import process
D. speed up loading product on the backend
Which of the following xpaths defines the correct XML structure for informing Magento that your module has install scripts?
A. global/resources/etc/setup/
B. system/database/resources/
C. global/resources/
D. database/action/scripts/
Assume you added a product with custom options to the shopping cart. Where will the data for the custom options be stored persistently?
A. in the sales_flat_quote table, as a serialized string in a text field
B. in the session, as a serialized array
C. in a separate table, sales_flat_quote_item_option
D. Magento doesn't store persistent data about custom options; only the new price and new SKU are stored.
A custom frontend controller will extend which one of the following classes?
A. Mage_Core_Controller_Front_Action
B. Mage_Adminhtml_Controller_Action
C. Mage_Core_Controller_Varien_Front
D. Mage_Core_Controller_Abstract
How can you update a third-party system with every new order created in Magento?
A. Use the native sales_order.update API call.
B. Use a sales_order_place_after API call.
C. Create an observer in Magento on the sales_order_place_after event.
D. Customize the third-party system to listen to Magento's sales__order_place_after event.
Which model is responsible for calculating the taxes for the selected shipping rate?
A. shipping/rate_result
B. shipping/total_tax
C. tax/sales_total_quote_tax
D. the concrete shipping carrier model implementation
E. shipping/rate_request
Assume we have a table mage_acme/ and you want to add an index for two fields, A and B. Which one of the following code fragments can do that?
A. B. C. D. E.
What class does an adminhtml grid directly extend?
A. Varien_Data_Widget
B. Varien_Data_Grid
C. Mage_Adminhtml_Block_Widget
D. Mage_Adminhtml_Block_Template
What is the total model Mage_Sale_Model_Quote_Addres_TotalNominal used for?
A. It checks whether the whole quote is nominal or not.
B. It calculates nominal prices for every item.
C. It calculates prices only for items that are represented by the nominal product types.
D. It runs nominal total models in case of need.