An Adobe Commerce developer is being tasked with storing additional data for products added to
the cart in the quote. A new column should be added to the Quote_item table to store the value-
Following best practices, how would the developer extend the database to accomplish this?
A)
B)
C)
A
An Adobe Commerce developer has a requirement to add some settings which are unique to a
specific system and it will be dumped to app/etc/env.php when the CLI command php bin/magento
app:config:dump is used.
How would the developer achieve this?
A)
B)
C)
B
There is the task to create a custom product attribute that controls the display of a message below
the product title on the cart page, in order to identify products that might be delivered late.
The new EAV attribute is.deloyed has been created as a Boolean and is working correctly in the
admin panel and product page.
What would be the next implementation to allow the is_delayed EAV attribute to be used in the
.phtml cart page such as $Block->getProduct()->getIsDelayed() ?
A)
B)
C)
B
Which two techniques can be used to protect a storefront POST action against Cross Site Request
Forgery (CSRF) attacks? (Choose two.)
B, D
A client has requested a new field on the admin product edit page for simple products that displays a
list of links to parent products to which the simple product belongs.
According to best practices, how would an Adobe Commerce developer implement this?
B
An Adobe Commerce developer has created a new shipping carrier. Everything has been
implemented and the collectRates() and getAlloweMethods() functions can be seen below:

A
An Adobe Commerce developer is developing a custom module. As part of their implementation
they have decided that all instances of their Custom\Module\Model\Example class should receive a
new instance of Magento\Filestem\adapter\local.
How would the developer achieve this using di. xml?
A)
B)
C)
A
An Adobe Commerce developer has added an iframe and included a JavaScript library from an
external domain to the website. After that they found the following error in the console:
Refused to frame IURLJ because it violates the Content Security Policy directive.
In order to fix this error, what would be the correct policy ids to add to the csp_whitelist.xmi file?
A
An Adobe Commerce developer is developing a class that is executed in both the frontend and
crontab areas. When executed in the frontend \Magnto\Customer\Model\session::getCu5tonteria()
is called but when executed in the crontab this section of code is skipped.
Keeping performance and best practices in mind, what would be the best approach to achieve this?
B
An Adobe Commerce developer has been asked to modify the PageBuilder slider content type to
allow a new custom content type (other than slide ) to be assigned as a child. The developer has
already created the new content type called improved.slider_slide their module. They now need to
create a new view/adminhtml/pagebuilder/content_type/slider.xml file in their module to allow the
new content type to be a child of slider content types.
What is the correct xml to accomplish this?
A)
B)
C)
A