Practice Free AD0-E724 Exam Online Questions
A developer needs to manually trigger a full reindex of all indexers from the command line after a large data import.
Which CLI command should be used?
- A . `bin/magento indexer:reindex`
- B . `bin/magento indexer:refresh`
- C . `bin/magento indexer:run all`
- D . `bin/magento indexer:update`
A developer needs to troubleshoot an issue on a remote cloud integration environment. They need to run `bin/magento` commands and check log files directly on the server.
Which Cloud CLI command should they use to connect to the remote environment’s application container?
- A . `magento-cloud connect <environment_id>`
- B . `magento-cloud login`
- C . `magento-cloud environment:access`
- D . `magento-cloud ssh`
Which type of tax calculation in Adobe Commerce is based on the merchant’s warehouse location or store address?
- A . Shipping Origin-based tax calculation
- B . Billing Address-based tax calculation
- C . Customer-based tax calculation
- D . Product-based tax calculation
A developer needs to run a piece of custom logic, such as sending a notification to an external system, every time a customer successfully places an order. The custom logic does not need to modify the order object itself.
What is the most appropriate and conventional Adobe Commerce component to use for this task?
- A . A preference for the `MagentoSalesModelOrder` class.
- B . An observer for the `checkout_onepage_controller_success_action` or `sales_order_place_after` event.
- C . An "around" plugin on the `MagentoQuoteModelQuoteManagement::placeOrder` method.
- D . A cron job that checks for new orders every minute.
To enable features like Product Recommendations, a developer must first connect their Adobe Commerce instance to the Commerce Services platform.
What specific credentials must be obtained from the merchant’s Adobe Commerce account and configured in the Commerce Services Connector?
- A . A generated security token from the Web API configuration
- B . The project ID and environment ID from the Cloud Console
- C . Production and sandbox API keys
- D . Username and password for the merchant’s Adobe.com account
A developer changes the URL Key for a popular category from `old-url-key` to `new-url-key` in the Admin Panel and saves the category. The store has default URL rewrite settings enabled.
What is the expected behavior for the old URL?
- A . Both the old and new URLs will serve the same category page content without any redirection.
- B . The system will automatically create a 301 permanent redirect from the old URL to the new URL.
- C . The old URL will now lead to a 404 "Not Found" page.
- D . The system will create a 302 temporary redirect, which will be removed after the cache is cleared.
Data is collected first, and then a separate cron job sends it.
What are the official names for these two modes?
- A . 1 = Full export mode, 2 = Partial export mode
- B . 1 = Legacy export mode, 2 = Immediate export mode
- C . 1 = Active export mode, 2 = Passive export mode
- D . 1 = Immediate export mode, 2 = Legacy export mode
Data is collected first, and then a separate cron job sends it.
What are the official names for these two modes?
- A . 1 = Full export mode, 2 = Partial export mode
- B . 1 = Legacy export mode, 2 = Immediate export mode
- C . 1 = Active export mode, 2 = Passive export mode
- D . 1 = Immediate export mode, 2 = Legacy export mode
A developer needs to store a sensitive API key for a third-party integration that will be used in a production environment. To maintain security, this key should not be stored in the Git repository.
What is the recommended `magento-cloud` CLI command to securely store this value for a specific environment?
- A . `magento-cloud credential:set <name> <value>`
- B . `magento-cloud variable:set <name> <value>`
- C . `magento-cloud secure:add <name> <value>`
- D . `magento-cloud env:config:set api_key <value>`
A merchant wants to redirect an old, discontinued marketing page (`/promo-2022`) to the homepage of their site to avoid 404 errors.
Which steps should a developer take in the Admin Panel to achieve this?
- A . Go to `Reports > Marketing > Promotions` and configure the redirect from there.
- B . Go to `Stores > Configuration > Web` and add the redirect in the "URL Rewrites" section.
- C . Go to `Content > Pages`, find the old page, and set a new URL key.
- D . Go to `Marketing > URL Rewrites`, create a new "Custom" rewrite, set the Request Path to the old URL, the Target Path to `/`, and choose a "Permanent (301)" redirect.
