Assume that:
$product is a loaded instance of Mage_Catalog_Model_Product/. Catalog Price Scope is set to global, and
$customerGroupid contains a valid customer group ID.
Which one of the following statements will correctly set new group prices?

A. B. C. D.
When you register an event observer, which two of the following pieces of information are required for it to function? (Choose two)
A. method (or function) name
B. method (or function) arguments
C. class name
D. object type (singleton, model, none, etc)
E. call order
F. active/inactive status
Which four of these xml elements are used in system.xml to configure a system configuration property? (Choose four)
A. backend_model
B. admin_model
C. frontend_model
D. source_model
E. source_type
F. show_in_store
Which one of the following EAV attribute types may be used for layered navigation in native Magento?
A. varchar
B. enum
C. option
D. union
Which three of the following conditions should exclude a quote item from the shipping rate calculation by a carrier model? (Choose three)
A. $quoteItem->getFreeShipping ( ) = = true
B. $quoteItem->getProduct ( )->isVirtual ( ) = = true
C. $quoteItem->getweight ( ) > 0
D. $quoteItem->isShipSeparately ( ) andand SquoteItem->getHasChildren( )
E. $quoteItem( )->getQty ( )
You have a product collection and want to add a filter to get all products whose name starts with Test or whose price is 0.00. Which of the following statements would add that OR condition?

A. B. C. D. E.
A native Magento EAV entity will use_____________.
A. A single table with separate columns for each data type (for instance, decimal, text, varchar, etc.)
B. A single table with separate columns for all data types used by the entity
C. A separate table for each data type (for instance, decimal, text, varchar, etc.)
D. A separate table for each data type in addition to a flat data table with separate columns to store values for each data type used by the entity
Which two of the following are supported in the native Magento API? (Choose two)
A. partial void
B. partial invoice
C. partial capture
D. partial refund
E. partial shipment
You want your module to set some data on the shopping cart item when a product is added to the cart on the frontend.
Which event can be used regardless of how the product is added to the cart (from wishlist, through quote merge, etc.)?
A. checkout_cart_add_product_complete
B. checkout_cart_product_add_after
C. checkout_cart_save_before
D. sales_quote_add_item
E. sales_quote_product_add_after
F. sales_quote_merge_after
Which of the following will return an instance of a resource model? (Choose three)
A. Mage::getResourceModel ('customer/customer');
B. Mage::getResourceSingleton ('customer/customer');
C. Mage::getModel ('customer/customer') ->getResource ( );
D. Mage::getResourceModel ('customer/customer')->getInstance ( );
E. Mage::getModel ('customer/customer') ->getResourceModel ( );
F. Mage::getResourceModel ('customer/customer') ->getResource( );