How many shipping addresses may be selected for an order during the checkout process?
A. One shipping address per line item is possible
B. Only one shipping address per order is possible
C. One shipping addresses per unit of quantity is possible
D. One shipping address per product type is possible
In a code review of a merchant's site you have discovered that there are multiple observers for the checkout_submit_all_after event. After closer inspection, you notice one of these observers is relying on the others being executed before it is called.
What risk does this pose, and how can it be mitigated?
A. There is no risk posed as long as each event observer specifies a correct sortOrder. Nothing needs to be changed.
B. Event observers are fired in alphabetical order of the observer name. There is no risk here.
C. Magento only supports one observer per event. These observers will need to be combined into a single point of customization.
D. Order of listener execution cannot be guaranteed, resulting in a fragile implementation. This code should be re-worked using plugins
In layout files you can change al element's order on a page. This can be done using one of the following:
before and after element attributes?
How are two methods different?
A. They are the same, both provide access to the same functionality
B. Elements are renamed by default when using the move instruction
C. The move instruction allows altering an element's parent node
D. Before and after attributes can only be used with referenceContainer and referenceBlock
What order operation is available in the My Account section in the storefront?
A. Edit order
B. Refund
C. Reorder
D. Invoice
In a custom module you are adding a new field to the store configuration. The field will set the value for the configuration path mycompany/mymodule/myoption. How do you supply the default value for that configuration option?
A. In the config/default/mycompany/mymodule/myoption node in the etc/config.xml file
B. In the system/mycompany/group/mymodule/field/myoption node in the etc/system.xml file
C. In the menu/default/section/group/field node in the file etc/adminhtml/menu.xml
D. In the system/section/group/field/value node in the etc/adminhtml/system.xml file
How do you add a new link into the My Account sidebar?
A. By creating a new UI component
B. By creating a child of the My Account UI component
C. By adding the new section into the customer_account table in the database
D. By using a layout update
A merchant is interested in setting different prices for the same products in different store scopes.
What do you reply to this inquiry?
A. The prices can only be scoped per website or globally
B. The prices can be scoped per store
C. The price scope can be set to store but this will lead to performance degradation of category pages
D. The prices do not support scopes
A merchant sells shoes with multiple variations such as a color and size. A shoe is represented by a configurable product. There are seven different colors and four sizes.
What is the minimal amount of simple products that represent a combination of color and size needs to be created in order to make a shoe salable?
A. Each color and size must have at least one representation, so a minimum of seven products is needed
B. One simple product that represents a combination of color and size is enough
C. A product may be purchased even without any combination available. The color and size may be adjusted during order fulfillment
D. A simple product for every combination must be created
You have created a new product type, sample, and need to customize how it renders on the shopping cart page. Keeping maintainability in mind, how do you add a new renderer?
A. Create the layout file, checkout_cart_item_renderers.xml, reference the checkout.cart.item.renderers block and add a new block with an as="sample" attribute.
B. Override the cart/form.phtml template and add logic for the sample product type.
C. Create the layout file, checkout_cart_index.xml, and reference the checkout.cart.renderers block and add a block with the as="sample" attribute.
D. Create the layout file, checkout_cart_index.xml, and update the cart page's uiComponent to appropriately render the sample product type.
You are adding a new entry to the backend menu that appears after Marketing > SEO and Search > Site Map You see the existing site map menu item is declared by the node:

What two actions do you take to configure the new menu entry location? (Choose two.)
A. Specify item XML in the file etc/adminhtml/menu/marketing/seo/menu.xml
B. Specify parent="Magento_Sitemap::catalog_sitemap"
C. Specify parent="Magento_Backend::marketing_seo"
D. Specify sortOrder="100"