The initial call to ______________ will create and return an instance of the specified class.
Subsequent calls to this method during the same execution cycle will return the same class instance as opposed to creating a new one.
A. Mage::getResourceModel ('namespace/modulename');
B. Mage::getInstance ('namespace/modulename');
C. Mage::getModel ('modulename/modelname');
D. Mage::getSingleton ('modulename/modelname');
When the Magento configuration is being loaded, all the XML files in app/etc and the module registration files under app/etc/modules/ are loaded first. After that step, in which order are the following items loaded?
1.
Configuration from the core_config_data DB table
2.
app/etc/local.xml
3.
The etc/config.xml of all active modules
A. 1, 3, 2
B. 3, 1, 2
C. 3, 2, 1
D. 1, 2, 3
Which of the following is the default setup script class name?
A. Mage_Core_Model_Mysql4_Setup
B. Mage_Core_Model_Resource_Setup_Default
C. Mage_Setup_Model_Resource_Default
D. Mage_Core_Model_Resource_Setup
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.
When changes are made to more than one of a collection's items using setData ('some', 'value'), which of the following methods will save the changes in the collection?
A. $collection->saveAll ( );
B. $collection->saveItems ( );
C. $collection->saveAllItems ( );
D. $collection->save ( );
Assume the following price configuration:
Price: 10 Group price: group=General, price=15 Tier price: group=All Groups, qty=1, price=20 Tier price: group=General, qty=1, price=25
Which price will a customer from the"General"group see on the product view page?
A. 10
B. 15
C. 20
D. 25
Which one of the following code fragments will create a new table in Magento?
A. B. C. D.
Which of the following options would cause a poll/poll collection to load all entities that have been posted during April, 2011?
A. B. C. D.
In which table could you find thecurrentorder state?
A. sales_flat_order
B. sales_flat_order_state
C. sales_flat_order_status
D. sales_flat_order_status_history
Which of the following API protocols does native Magento support?
A. REST
B. XmlRpc
C. POST
D. Open Social
E. XQuery