Magento 2 Certified Associate Developer Free Sample Questions

Magento 2 Certified Associate Developer Practice Test
4/142 questions · Unlock full access
Q1

Products may be accessed using SEO friendly URLs like /my-product instead of /catalog/product/view/id/{ID}How is this one? A.An event observer adds RewriteRules to .htaccess on product saveB.Magento\Catalog\Controller\Product\View::loadByUrlKey loads product pages using the url_key attribute valueC.Using a URL Rewrite stored in the database connecting the request path with the target pathD.A plugin on \Magento\UrlRewrite\Controller\Router::match loads products by the url_key attribute

Q2

You are setting up a brand new Magento installation for a merchant who is migrating from Magento 1 to Magento 2.Keeping in mind upgradability and the need to customize, which one do you choose? A.Create a new Magento instance using composer create-projectB.Clone the magento/magento2 GitHub repositoryC.Run php bin/magento setup:migrate commandD.Create a new Magento instance by using the bin/magento install command

Q3

How many shipping addresses may be selected for an order during the checkout process? A.One shipping address per line item is possibleB.Only one shipping address per order is possibleC.One shipping address per unit of quantity is possibleD.One shipping address per product type is possible

Q4Multiple answers

A module you are working on needs to send a newsletter to all subscribed customers at predefined intervals.Which two actions do you take to make sure the newsletter is sent? (Choose two.) A.Implement \MyCompany\MyModule\Cron\NewsLetterSender::execute and register it in etc/crontab/di.xmlB.Implement \MyCompany\MyModule\Cron\NewsLetterSender::execute and register it in etc/crontab/.xmlC.Make sure bin/magento cron:run is added to the system crontabD.Register the plugin for \Magento\Customer\Model\Customer::authenticate in etc/crontab.xml