What type of Magento class is an API resource?
A. Controller
B. Helper
C. Model
D. Resource model
Which of the following actions will enable logging via calls to debugData() on a native Magento payment method model?
A. Set the protected property $_debug of the payment model to true
B. Set the config node default/payment/debug/ [method code] to 1
C. Call Mage::register ('payment_method_debug_' . [method code], true);
D. Set the config node default/payment/ [method code]/debug to 1
E. Call setDebug(true) on the payment method model
Assume that PayPal has presented a new API for online purchasing that you are going to use.
Which class should you extend for doing that?
A. Mage_Sales_Model_Quote_Payment
B. Mage_Payment_Model_lnfo
C. Mage_Payment_Model_Method_Abstract
D. Mage_Sales_Model_Order_Payment
Which object never encapsulates any shopping cart items?
A. Mage_Checkout_Model_Cart
B. Mage_Sales_Model_Quote
C. Mage_Sales_Model_Quote_Address
D. Mage_Sales_Model_Quote_Address
Which method is called on a shipping carrier model to fetch a list of all available shipping methods, along with the rates associated with them, for a quote address?
A. collectShippingRates()
B. getAllowedMethodsO
C. getShippingRates()
D. getAvailableRates()
E. collectRates()
What class does an adminhtml grid directly extend?
A. Mage_Adminhtml_Block_Widget
B. Varien_Data_Grid
C. Varien_Data_Widget
D. Mage_Adminhtml_Block_Template
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
Which one of the following API protocols does native Magento support?
A. XmlRpc
B. REST
C. POST
D. Open Social
E. XQuery
At what point in the grid preparation and rendering process is the collection containing the data for the grid prepared for loading?
A. Immediately after the grid block is instantiated
B. Immediately before the grid's rendered HTML is sent to the browser
C. Prior to the grid being rendered, inside of _beforeToHtml
D. When the _construct method is called on the grid block
Which one of the following classes does NOT exist in Magento?
A. Mage_Adminhtml_Block_widget_Form_Element_Abstract
B. Mage_Adminhtml_Block_Widget_Form
C. Mage_Adminhtml_Block_Widget_Form_Container
D. Mage_Adminhtml_Block_Widget_Form_Element
E. Varien_Data_Form_Element_Abstract