With which three kinds of product relations do Magento Catalog Target Rules deal? (Choose three)
A. The relations between a configurable product and its child products
B. The relations between a bundle product and its child products
C. The relations among products linked as cross-sell products
D. The relations between a product and its custom options
E. The relations among products linked as related products
F. The relations among products linked as upsell products
When $ this ->load Layout (' foo_bar_baz') is called in a standard front action, what is the effect on the layout update object instance?
A. foo_bar_baz will be the only handle added
B. loadLayout () does not take any arguments, so there is no effect
C. Only two handles will be added: foo_bar_baz and default
D. Foo_bar_baz will be added instead of the default handle
You need to override the default value for the expiry calculation for reward points used by the Reward Points module.
Which of the following XML fragments should you use in your modules config.xml?
A. default/enterprise_reward/general/expiry_calculation with a value of static
B. default/enterprise_reward/general/expiry with a value of static
C. default/reward_points/general/expiry_calculation with a value of static
D. default/enterprise_reward/expiry_calculation with a value of static
What happens when you edit an existing order using the order management page?
A. A form appears that allows you to edit all information on the current order.
B. A form appears that allows you to edit shipping information of the current order only.
C. Depending on the order status, different editing forms appear for the current order.
D. The current order is canceled and a new order is created from scratch based on the current order's data.
Which of the following allows you to save a single attribute value on an EAV entity?
A. $model->saveAttribute($attributeCode);
B. $model->save(SattributeCode);
C. $model->getResource()->saveAttribute($model, SattributeCode);
D. $model->getResource()->save($model, $attributeCode);
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.
In which order are the following methods executed after Mage_core_Model_Abstract:: save () is called?
1 - Mage_Core_Model_Abstract::_beforeSave()
2 - Mage_Core_Model_Abstract::_afterSave()
3 - Mage_Core_Model_Mysql4_Abstract::_beforeSave()
4 - Mage_Core_Model_Mysql4_Abstract::_afterSave()
5 - Mage_Core_Model Abstract::afterCommitCallback()
A. 1, 2, 3, 4, 5
B. 1, 3, 2, 4, 5
C. 1, 3, 4, 2, 5
D. 3, 1, 4, 2, 5
A customer bought two items but wants to cancel one.
Which option enables the administrator of the site to edit the quantity while the invoice is being captured in the admin area?
A. In the System Configuration, under the Sales section, set "Allow partial invoice" to "true".
B. In the payment method, set the $_canCapturePartial protected variable to true.
C. There are no native ways to do this; override the sales/order/invoice/view/items .phtml template.
D. In the configuration node, set default/payment/ {METHOD_NAME}/allow_partial_invoice to 1.
Which two of the following will return an instance of a block object? (Choose two)
A. Mage::getBlock('page/html_header');
B. Mage::app()->createBlock('page/html_header');
C. Mage::createBlock('page/html_header');
D. Mage::app()->getLayout()->createBlock('page/html_header');
E. Mage::getLayout()->createBlock('page/html_header');
F. Mage::app()->getLayout()->createBlock('page/html_header')->setTemplate('page/html/header=phtml');