Free Adobe AD0-E717 Exam Actual Questions

The questions for AD0-E717 were last updated On Dec 17, 2024

Question No. 1

Which type of product has the ability to build customizable products from a variety of options?

Show Answer Hide Answer
Correct Answer: C

A bundle product is a product that is made up of a collection of other products. This type of product is ideal for selling products that are often purchased together, such as a printer and ink cartridges.

A bundle product in Adobe Commerce has the ability to build customizable products from a variety of options. Bundle products are ideal for creating custom kits or packages where customers can choose from options for each component. For example, building a custom computer setup from selected components like monitors, keyboards, CPUs, etc. Grouped products are collections of standalone products that can be purchased individually, and virtual products are intangible items.


Question No. 2

A developer is creating a class \Vendor\Module\Model\MyModeL How should that class be defined as transient in di.xml?

Show Answer Hide Answer
Correct Answer: C

To define a class as transient in Magento's di.xml, the correct approach is to set the shared attribute to 'false' for that class. This tells Magento's object manager not to use the singleton pattern for this class, meaning a new instance will be created each time the class is requested. This is particularly useful for classes that should not maintain state across different areas of the application or during a single request lifecycle.


Question No. 3

Which characteristic is associated with a persistent cart?

Show Answer Hide Answer
Correct Answer: C

A persistent cart is a cookie that is stored on the customer's computer. This cookie allows the customer to continue shopping even if they close their browser. If the customer is logged in, the persistent cookie will remain active even if the session cookie expires.

Associated with a persistent cart in Adobe Commerce is the characteristic that while the customer is logged in, if the session cookie expires, the persistent cookie will remain active. This ensures that the customer's shopping cart is preserved even if they have been inactive and the session has expired. The persistent cookie allows the cart to be restored when the customer returns to the store.


Question No. 4

What is one purpose of a customer data JS library?

Show Answer Hide Answer
Correct Answer: B

The customer data JS library is used to store private customer data in local storage. This data can be used to improve the customer's experience on the store, such as by remembering their shipping address or their preferred payment method.

The customer data JS library in Adobe Commerce is used for managing customer data on the client side, such as the shopping cart, comparison list, and wishlist. It does not store sensitive information like credit card details or usernames and passwords. Instead, it utilizes local storage to keep a private data section where customer-specific data is stored securely and accessed via JavaScript, making option B correct.


Question No. 5

A merchant has noticed an error in the checkout. The accessed URL is /checkout.

Where can the developer find the responsible controller in the Magento.Checkout module?

Show Answer Hide Answer
Correct Answer: C

The controller responsible for handling the /checkout URL is located in Controller/Checkout/Index.php in the Magento.Checkout module1.This controller extends from \Magento\Checkout\Controller\Index\Index, which implements the execute() method that renders the checkout page1.

In the Magento_Checkout module, the responsible controller for the /checkout URL can be found in Controller/Checkout/Index.php. This controller handles the index action for the checkout process, initiating the checkout page when a customer navigates to /checkout. The organization of controllers in Magento follows a convention where the URL path corresponds to the directory structure within the module, making it easier to locate and understand the functionality associated with specific routes.