New Year Special Sale - 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: spcl70

Note! AD0-E704 has been withdrawn.

Practice Free AD0-E704 Adobe Certified Master - Adobe Commerce Architect Exam Questions Answers With Explanation

We at Crack4sure are committed to giving students who are preparing for the Adobe AD0-E704 Exam the most current and reliable questions . To help people study, we've made some of our Adobe Certified Master - Adobe Commerce Architect exam materials available for free to everyone. You can take the Free AD0-E704 Practice Test as many times as you want. The answers to the practice questions are given, and each answer is explained.

Question # 6

A merchant is asking you to organize a catalog of 9000 rings which come in six sizes, each with unique inventory. Additionally, the customers will have 1000 unique engravings to choose from for their ring. The engraving is made on the selected ring just before the order is shipped.

How do you organize such a catalog to achieve optimal store performance and ease of management?

A.

9000 configurable products which have 6x1000 variants each

B.

9000 configurable products which have 6 variants each with 1000 values for an engraving custom option

C.

9000 simple products with 6 values for size custom option and 1000 values for an engraving custom option

D.

9000x6 simple products with 1000 values for engraving custom option

Question # 7

You are tasked to work on a message queue module. When looking at the queue configuration you see the following:

AD0-E704 question answer

Keeping in mind maintainability, you change it to:

AD0-E704 question answer

What will happen?

A.

This code will cancel all the topic starting with customer

B.

This code will not work as message queue does not allow # wildcard

C.

This code will replace all of the different topics as # is the symbol for everything

D.

This code will replace only some of the topics

Question # 8

Suppose you are tasked with update a product price to 10% more and it's cart rule to provide 5% discount after 2 month. So after this timeperiod, product price and cart rule must be activated workign in the frontend for users. Which Magento feature you should use to do the above task?

A.

Use “Schedules Update” feature provided by the “Magento Staging” module.

B.

Use “Schedules Update” feature provided by the “Magento Sales” module.

C.

Use “Schedules Update” feature provided by the “Magento Catalog” module.

D.

We can’t set any “schedule update” in future date for product or cart rule data.

Question # 9

To prevent Cross Site Scripting (XSS) attacks, Magento templates use different methods to escape the output on the website before displaying it to the user. What three methods does Magento use to prevent this kind of attack?

A.

Sblock->escapeData()

B.

Sblock->escapeOutput()

C.

Sblock->escapeHtmlAttr()

D.

$block->escapeHtml()

E.

$block->escapeUrl()

Question # 10

Magento regenerates the admin URL secret key for each new session. What is the purpose of this key?

A.

To prevent brute-force attacks

B.

To prevent admin pages from being cached

C.

To validate ACL permissions for the current admin user

D.

To prevent admin panel Cross Site Request Forgery attacks

Question # 11

You are working on a customization that requires a list of shipping rates available to a user. Which call returns the list of shipping rates?

A.

\Magento\Checkout\Api\ShippingInformationManagementInterface::getRates

B.

\Magento\Quote\Model\Quote::getShippingRates

C.

\Magento\Quote\Model\Quote\Address::getAllShippingRates

D.

\Magento\Shipping\Helper\Rates: :getAHRates

Question # 12

Consider below example of etc/di.xml: Magento\Filesystem\Adapter\Local Please select correct statement based on shared="false" attribute in the example:

A.

Magento\Filesystem is not shared, so all clients will retrieve separate instances of Magento\Filesystem. Also, every instance of Magento\Filesystem will get separate instance of $adapter, because it is non-shared too.

B.

Magento\Filesystem is not shared, so all clients will retrieve same instances of Magento\Filesystem. Also, every instance of Magento\Filesystem will get same instance of $adapter, because it is non-shared too.

C.

Magento\Filesystem is not shared, so no clients will retrieve any instances of Magento\Filesystem. Also, no instance of Magento\Filesystem will get any instance of $adapter, because it is non-shared too.

D.

None of these.

Question # 13

In a phtml, you added script tag and defined couple of js variables as below:Now to protect it from XSS attacks, which two methods allow you to keep the php variable output XSS-safe?Choose 2

A.

$block->escapeUrl($myUrl)

B.

$block->escapeJs($myName)

C.

$block->escapeHtmlAttr($myName)

D.

$block->escapeHtmlAttr($myUrl)