ExamGecko
Home Home / Salesforce / Certified B2C Commerce Developer

Salesforce Certified B2C Commerce Developer Practice Test - Questions Answers, Page 6

Question list
Search
Search

List of questions

Search

Related questions











A Digital Developer is tasked with setting up a new Digital Server Connection using UX Studio in their sandbox.

Which three items are required to accomplish this task? (Choose three.)

A.
Instance Version
A.
Instance Version
Answers
B.
Instance Hostname
B.
Instance Hostname
Answers
C.
Business Manager Username
C.
Business Manager Username
Answers
D.
Keystore Password
D.
Keystore Password
Answers
E.
Business Manager Password
E.
Business Manager Password
Answers
Suggested answer: B, D, E

Explanation:

Reference: https://medium.com/@fsjohnny/lets-develop-with-salesforce-commerce-cloud-part-1-setting-up-your-development-environment-b16044708d09

A Digital Developer adds the following line of code to a script.

The code executes without error; however, the log file on disk does NOT contain the log message.

Which two actions should be completed to write the log message to disk? (Choose two.)

A.
Ensure that the debug log level is enabled to write to file in the Custom Log Settings Business Manager module.
A.
Ensure that the debug log level is enabled to write to file in the Custom Log Settings Business Manager module.
Answers
B.
Archive old log files to make room in the log directory.
B.
Archive old log files to make room in the log directory.
Answers
C.
Ensure that the "login" category is added to the Custom Log Filters in the Log Settings Business Manager module.
C.
Ensure that the "login" category is added to the Custom Log Filters in the Log Settings Business Manager module.
Answers
D.
Ensure that the debug log level has been added to the custom log level types in the Global Preferences business manager module.
D.
Ensure that the debug log level has been added to the custom log level types in the Global Preferences business manager module.
Answers
Suggested answer: B, D

Which technical reports datapoint measures the performance of a controller's script execution if network factors and Web Adaptor processing is ignored?

A.
Processing time
A.
Processing time
Answers
B.
Cache hit ratio
B.
Cache hit ratio
Answers
C.
Call count
C.
Call count
Answers
D.
Response time
D.
Response time
Answers
Suggested answer: A

Universal Containers needs to have Apple Pay disabled for the country of Spain.

Which Business Manager module should the Developer use to meet this requirement?

A.
Merchant Tools > Ordering > Payment Methods
A.
Merchant Tools > Ordering > Payment Methods
Answers
B.
Merchant Tools > Site Preferences > Apple Pay
B.
Merchant Tools > Site Preferences > Apple Pay
Answers
C.
Merchant Tools > Ordering > Payment Processors
C.
Merchant Tools > Ordering > Payment Processors
Answers
D.
Merchant Tools > Site Preferences > Payment Types
D.
Merchant Tools > Site Preferences > Payment Types
Answers
Suggested answer: A

Explanation:

Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%2Fcom.demandware.dochelp%2FApplePay%2FEnableAPWUsingALinkCartridge.html

A Digital Developer has created a new PaymentForm controller that requires communication with the server and must be made using the HTTPS protocol.

Which code sample should the Developer use to make sure that HTTPS is used?

A.
exports.PaymentForm = guard.ensure(['http', 'post', 'loggedIn'], handlePaymentForm);
A.
exports.PaymentForm = guard.ensure(['http', 'post', 'loggedIn'], handlePaymentForm);
Answers
B.
exports.PaymentForm = guard.expose(['post', 'loggedIn'], handlePaymentForm);
B.
exports.PaymentForm = guard.expose(['post', 'loggedIn'], handlePaymentForm);
Answers
C.
exports.PaymentForm = guard.httpsPost(handlePaymentForm);
C.
exports.PaymentForm = guard.httpsPost(handlePaymentForm);
Answers
D.
exports.PaymentForm = guard.ensure(['https', 'post', 'loggedIn'], handlePaymentForm);
D.
exports.PaymentForm = guard.ensure(['https', 'post', 'loggedIn'], handlePaymentForm);
Answers
Suggested answer: D

Explanation:

Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%2Fcom.demandware.dochelp%2Fjsdoc%2Fdist%2Fjs%2Fserver%2Fapp_storefront_controllers_cartridge_controllers_PaymentInstruments.js.html

Universal Containers requires that a new order comments attribute is added to the existing SiteGenesis checkout flow. This new attribute needs to be included as part of the standard order export.

Aside from updating the HTML markup and form definition, which option contains all necessary steps to achieve this task?

A.
A.
Answers
B.
B.
Answers
C.
C.
Answers
D.
D.
Answers
Suggested answer: B

Which code sample is required to use a custom tag provided in SiteGenesis in an ISML template?

A.
A.
Answers
B.
B.
Answers
C.
C.
Answers
D.
D.
Answers
Suggested answer: B

Explanation:

Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC2/index.jsp?topic=%2Fcom.demandware.dochelp%2FISML%2FISML.html

Universal Containers wants to change a content slot that is currently configured to display a content asset. Now they want the slot to display the top five selling boxes for the week.

Which two changes need to be made for this to occur? (Choose two.)

A.
Change the slot's configuration content type to "products."
A.
Change the slot's configuration content type to "products."
Answers
B.
Change the slot's configuration content type to "recommendations."
B.
Change the slot's configuration content type to "recommendations."
Answers
C.
Change the slot's configuration template to the appropriate rendering template.
C.
Change the slot's configuration template to the appropriate rendering template.
Answers
D.
Delete the existing content asset.
D.
Delete the existing content asset.
Answers
Suggested answer: B, C

A Digital Developer has a site export file on their computer that needs to be imported into their sandbox.

How should the developer update their sandbox with the data in this file?

A.
Connect and import the file using the remote option within the Site Import & Export Business Manager module.
A.
Connect and import the file using the remote option within the Site Import & Export Business Manager module.
Answers
B.
Upload and import the file using the local option within the Site Import & Export Business Manager module.
B.
Upload and import the file using the local option within the Site Import & Export Business Manager module.
Answers
C.
Upload the file to the Impex WebDAV directory and import using the Site Import tool within UX Studio.
C.
Upload the file to the Impex WebDAV directory and import using the Site Import tool within UX Studio.
Answers
D.
Upload the file to the Static WebDAV directory and import using the Import & Export Business Manager module.
D.
Upload the file to the Static WebDAV directory and import using the Import & Export Business Manager module.
Answers
Suggested answer: B

A Digital Developer is working on a project to convert a pipeline to a JavaScript controller. UX Studio has a functioning pipeline debugger configured for the site. Assume the Developer will add a breakpoint to the controller when it is written.

What must be done in order to use the debugger with the new controller when it is written?

A.
Create and use a new script debug configuration.
A.
Create and use a new script debug configuration.
Answers
B.
Use the existing pipeline debugger.
B.
Use the existing pipeline debugger.
Answers
C.
Modify the debugger configuration and use the existing pipeline debugger.
C.
Modify the debugger configuration and use the existing pipeline debugger.
Answers
D.
Create and use a new controller debug configuration.
D.
Create and use a new controller debug configuration.
Answers
Suggested answer: C
Total 209 questions
Go to page: of 21