ExamGecko
Home Home / Adobe / AD0-E717

Adobe AD0-E717 Practice Test - Questions Answers, Page 3

Question list
Search
Search

Which Adobe Commerce table stores all cron data?

A.
schedule
A.
schedule
Answers
B.
cronjob
B.
cronjob
Answers
C.
cron_schedule
C.
cron_schedule
Answers
Suggested answer: C

Explanation:

The cron_schedule table stores all cron data in Adobe Commerce. It contains information about the cron jobs that are scheduled to run, as well as the time and date they are scheduled to run.

Which method type can be intercepted by plugins?

A.
final
A.
final
Answers
B.
static
B.
static
Answers
C.
public
C.
public
Answers
Suggested answer: C

Explanation:

Only public methods can be intercepted by plugins. This is because plugins are essentially extensions of Magento classes, and they can only modify the behavior of public methods.

Which two actions will the developer need to take to translate strings added in JS files? (Choose two.)

A.
define ([ 'jquery, 'mage/translate' ), function ($, $t) {.;
A.
define ([ 'jquery, 'mage/translate' ), function ($, $t) {.;
Answers
B.
$ trans( ,<string>')
B.
$ trans( ,<string>')
Answers
C.
$.mage._('<string>);
C.
$.mage._('<string>);
Answers
D.
translate('<string>');
D.
translate('<string>');
Answers
Suggested answer: A, C

Explanation:

To translate strings added in JS files, the developer needs to do the following:

Import themage/translatemodule.

Use thetranslate()function to translate the string.

Which Magento project directory is the recommended webroot for the web server?

A.
Pub/
A.
Pub/
Answers
B.
app/
B.
app/
Answers
C.
bin/
C.
bin/
Answers
Suggested answer: A

Explanation:

The Pub/ directory is the recommended webroot for the web server in Magento. This is because it contains all of the static content that is used by the Magento store, such as images, CSS, and JavaScript files.

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

A.
bin/magento config:show dev/static/status
A.
bin/magento config:show dev/static/status
Answers
B.
bin/magento config:show dev/static/sign
B.
bin/magento config:show dev/static/sign
Answers
C.
bin/magento config:show dev/static/sign/status
C.
bin/magento config:show dev/static/sign/status
Answers
Suggested answer: C

Explanation:

Thebin/magento config:show dev/static/sign/statusCLI command can be used to determine if static content signing is enabled in Magento. If static content signing is enabled, the output of the command will include the following message:

static content signing is enabled

A developer is working on a task that includes a custom controller creation. A controller should forward the request to a different action.

How can the developer complete this task?

A.
Specify the forward action in the controllerjorward.xml configuration file.
A.
Specify the forward action in the controllerjorward.xml configuration file.
Answers
B.
Implement a forwardToAction method in the controller, and return the action where the request should be forwarded.
B.
Implement a forwardToAction method in the controller, and return the action where the request should be forwarded.
Answers
C.
Return the forward object with action as an argument in the object's forward method
C.
Return the forward object with action as an argument in the object's forward method
Answers
Suggested answer: C

Explanation:

To forward the request to a different action, the developer can use the following code in the controller:

return $resultForward->forward('action');

where $resultForward is an instance of \Magento\Framework\Controller\Result\ForwardInterface and 'action' is the name of the action where the request should be forwarded.

There is no controllerjorward.xml configuration file or forwardToAction method in Adobe Commerce.

Verified

Reference: [Adobe Commerce Developer Guide - Forward action result]

A product has been added to the Adobe Commerce Store, and it contains a value for the custom product attribute. A merchant reports that the attribute value is not displayed in the Additional Information tab on the product detail page.

Which action will correct this problem?

A.
The attribute must be moved to the specific group in the attribute set
A.
The attribute must be moved to the specific group in the attribute set
Answers
B.
The attribute property 'Use in Product Tab' must be set to 'yes'
B.
The attribute property 'Use in Product Tab' must be set to 'yes'
Answers
C.
The attribute property 'Visible on Catalog Pages on Storefront' must be set to 'yes'.
C.
The attribute property 'Visible on Catalog Pages on Storefront' must be set to 'yes'.
Answers
Suggested answer: C

Explanation:

The 'Visible on Catalog Pages on Storefront' attribute property determines whether or not the attribute value is displayed in the Additional Information tab on the product detail page. If this property is set to 'no', the attribute value will not be displayed.

Which two attribute input types can be used for a date? (Choose two.)

A.
Timezone
A.
Timezone
Answers
B.
Schedule
B.
Schedule
Answers
C.
Date and Time
C.
Date and Time
Answers
D.
Date
D.
Date
Answers
Suggested answer: C, D

Explanation:

The two attribute input types that can be used for a date are Date and Time and Date. These input types allow the user to select a date or a date and time from a calendar widget.

The Timezone and Schedule input types do not exist in Adobe Commerce.

Verified

Reference: [Adobe Commerce User Guide - Create a product attribute]

Which two attribute input types does Magento already have by default? (Choose two.)

A.
Multiple Select
A.
Multiple Select
Answers
B.
Text Field
B.
Text Field
Answers
C.
Geographic coordinate
C.
Geographic coordinate
Answers
D.
Numeric Field
D.
Numeric Field
Answers
Suggested answer: A, B

Explanation:

The two attribute input types that Adobe Commerce already has by default are Multiple Select and Text Field. Multiple Select allows the user to select multiple values from a list of options. Text Field allows the user to enter text in a single line.

The Geographic coordinate and Numeric Field input types do not exist in Adobe Commerce.

Verified

Reference: [Adobe Commerce User Guide - Create a product attribute]

How are multiple EAV attributes belonging to the same entity grouped in the database?

A.
Based on the sizes of values they contain
A.
Based on the sizes of values they contain
Answers
B.
Based on all numeric values being stored in one table while text values are stored in the other
B.
Based on all numeric values being stored in one table while text values are stored in the other
Answers
C.
Based on the types of values they contain
C.
Based on the types of values they contain
Answers
Suggested answer: C

Explanation:

Multiple EAV attributes belonging to the same entity are grouped in the database based on their data types, such as datetime, decimal, int, text, or varchar. For example, all attributes with datetime values are stored in one table, while all attributes with text values are stored in another table.

The sizes or numeric/text values of attributes do not determine how they are grouped in the database.

Verified

Reference: [Adobe Commerce Developer Guide - EAV data model]

Total 77 questions
Go to page: of 8