Free Adobe AD0-E711 Exam Actual Questions

The questions for AD0-E711 were last updated On Nov 7, 2024

Question No. 1

Which command should be used to deploy static content?

Show Answer Hide Answer
Correct Answer: A

To deploy static content, the command 'setup:static-content:deploy' should be used.


Question No. 2

A developer is working with a less file in a custom module. The file needs lo include multiple less files (rom different locations. Which directive should the developer use?

Show Answer Hide Answer
Correct Answer: B

The developer should use the @import directive to include multiple less files from different locations. This directive allows importing and combining less files from different sources into a single file. Reference: https://lesscss.org/features/#import-directives-feature


Question No. 3

How should a record be removed from a database which is using a model that was inherited from the \Magento\Framework\Model\AbstractModel class?

Show Answer Hide Answer
Correct Answer: B

To remove a record from a database using a model inherited from the \Magento\Framework\Model\AbstractModel class, call the 'delete' method on the model object. Reference: https://devdocs.magento.com/guides/v2.4/extension-dev-guide/database.html#database-models


Question No. 4

Which CLI command should be used to determine that static content signing is enabled?

Show Answer Hide Answer
Correct Answer: B

The correct CLI command to determine if static content signing is enabled in Magento is 'bin/magento config:show dev/static/sign'. This command will display the current status of the static content signing configuration.


Question No. 5

A developer wants to implement integration of a new payment method that should be available for order creation from the admin panel. Which flag should be used?

Show Answer Hide Answer
Correct Answer: A

To implement a new payment method available for order creation from the admin panel, the 'can_use_internal' flag should be used. This flag indicates whether the payment method can be used in the Magento admin panel. Reference: https://devdocs.magento.com/guides/v2.4/howdoi/checkout/checkout_payment.html