• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/10

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

10 Cards in this Set

  • Front
  • Back

Which of the following options would cause a poll/poll collection to load all entities that have been posted during April, 2011?


$array = array('from=>'2011-04-01', 'to' => '2011-04-30')




A. $c->addAttributetoFilter('date_posted', $array);


B. $c->addFieldtoFilter('date_posted', $array);


C. $c->addPostDateFilter('2011-04-01,' '2011-04-30');


D. $c->addFieldtoSelect('date_posted', $array);

B

The final price for the product on the product view page is:




A. taken from the catalog_product_index_price table


B. taken from the catalog_product_index_price_idx table


C. taken from the catalog_product_index_price_final_index table


D. calculated on-the-fly on php-level


E. pre-calculated in the products price attribute

D

Which of the following is a true statement about how Magento loads data for an EAV-based data model?




A. A data helper is used in order to properly load an object's attributes from the database.


B. EAV-based data models use a different abstract resource class than other data models.


C. The attribute values are loaded into an attribute collection object.


D. You must always specify each of the attributes to be loaded on the model.

B

Which one of the following class types directly charges a credit card when you capture an invoice in Magento admin?




A. Order


B. Payment


C. Invoice


D. payment_method

D

Applying the shopping cart rule's action affects the quote item by setting the quote item's:




A. base_price and price properties with the discounted price


B. base_discount_amount and discount_amount with the discount applied to the original price


C. base_row_total and row_total properties with the discounted price


D. base_price_incl_tax and price_incl_tax properties with the discounted price

B

Which one of the following statements is true regarding Mage_Core_Block_Text_List?




A. Mage_Core_Block_Text_List declares its own template for rendering, but the rendered template can be overridden via layout XML.


B. Child blocks of Mage_Core_Block_Text_List are always rendered alphabetically by name.


C. Mage_Core_Block_Text_List will always render all children automatically when it is rendered.


D. Mage_Core_Block_Text_List directly extends Mage_Core_Block_Template


E. In order to render, the parent block of Mage_Core_Block_Text_List must always be an output block.

C

Which one of the following API protocols does native Magento support?




A. XmlRpc


B. REST


C. POST


D. Open Social


E. XQuery

A

What is the difference between the base_grand_total and grand_total attributes of the order?




A. base_grand_total is a grand total before tax is applied; grand_total is the grand total after tax is applied.


B. base_grand_total is the grand total at the moment of order submission; grand_total is the grand total at the moment of order closing.


C. base_grand_total is the grand total in the currency of the store where the order was submitted; grand_total is in US dollars always.


D. base_grand_total is in a base currency and grand_total is in the currency of the website where the order was submitted.

D

Which object never encapsulates any shopping cart items?




A. Mage_Checkout_Model_Cart


B. Mage_Sales_Model_Quote


C. Mage_Sales_Model_Quote_Address<type=shipping>


D. Mage_Sales_Model_Quote_Address<type=billing>=shipping>

=billing>=shipping>

B

Which of the following items is NOT utilized in Magento's implementation of EAV-based data models?




A. An entity table for storing the entities' basic information


B. One or more tables to store the entities' associated pieces of information


C. A two-column cross-link table to associate attribute values with a corresponding entity


D. Foreign keys on each relevant table to connect relevant pieces of information at the database level


E. An attribute table that defines what data (and of what type) may be stored on a particular entity

C