A developer is remotely fetching the reviews for a product.
Assume that it's an HTTP GET request and caching needs to be implemented, what consideration should the developer keep in mind for building the caching strategy?
A. Cachethe HTTP service request
B. Remote include with caching only the reviews
C. Use custom cache
D. Cached remote include with cache of the HTTP service
During a technical review, the Client raises a need to display product pricingon the Product Detail Page (PDP) with discounted values per promotion. The Client notes customers complained of bad user experiences in the past when they would add a product to the basket from the cached PDP and then see a higher price when they started checkout as the promotion had expired.
What should the Architect suggest be implemented for this given that performance should be minimally impact?
A. Remove caching of the product page during the promotion.
B. Adjust the PDP to have a low caching period during the promotion.
C. Modify the page to vary the cache by price and promotion.
D. Create a separate template or view based on the promotion.
The Client plans to deploy a new payment provider and Order Management System on its existing B2C Commerce website. They have asked an Architect to advise which environment it should use to conduct load testing of its new integrations.
Which environment should be used as the ideal environment for this kind of load test?
A. The Development Instance of a rental Realm.
B. The Development Instance of the existing Realm.
C. The Production instance of the existing Realm.
D. The Production Instance of a rental Realm.
A client has a single site with multiple domains, locales, and languages. After launch, there is a need for the client to perform offline maintenance. The client would like to show the same maintenance page for each locale. Which version of aliases,Json file below will accomplish this task?

A. Option A
B. Option B
C. Option C
D. Option D
Northern Trail Outfitters (NTO) wants to migrate its online shoo from a custom ecommerce platformto B2C Commerce. NTO needs to migrate several thousands of customer records profile information, address book). WTO can provide a B2C Commerce feed. It is currently using SHA-256 as an encryption mechanism for the customer passwords.
What approach can theArchitect propose?
A. Import the customer records, including the hashed password, as B2C Commerce supports SHA-2S6, and they will be able to login with their existing password.
B. Do not import customer records and asks customers to create new accounts the first fame they try to log in to the B2C Commerce storefront.
C. Import the customer records, excluding the password field, and B2C Commerce will automatically require a password reset the first time a customer logs m to the storefront.
D. Import the customer records, with the hashed password as a custom attribute, and during the login compare the entered password with the hashed password and save it in the password field.
A new project for a Client will involve a few different Integrations to their middleware system resulting in four different web services. All will use the same credentials to the middleware. Each will have the same timeout, but will require a separate log file prefix.
How should the Architect set this up with the Service framework using a minimal set of configuration?
A. Four Service Configurations. Four Service Profiles,One Service Credential
B. Four Service Configurations. Four Service Profiles, Four Service Credentials
C. Four Service Configurations. One Service Profile, One Service Credential.
D. One Service Configuration, Four Service Profiles, One Service Credential.
During code review, the Architect found that there is a service call on every visit of the product detail woe (PDP).
What best practices should the Architect ensure are followed for the service configuration? Choose 2 answers
A. Circuit breaker is enabled.
B. Service timeout is set.
C. Service mock up call is configured.
D. Service logging is disabled.
An existing B2C Commerce site has the following aliases configuration: Which statement related to this configuration is incorrect?

A. Hostname www example.co.uk will redirect to www.example.com/uk.
B. Hostnamewww.example.comwill redirect to www example com/us
C. Hostname www.example.de will redirect to www.example.com/de.
D. Site supports multiple hostnames and locates.
A developer is checking for Cross Site Scripting (XSS) and found that the quick search is not escaped (allows inclusion of Javascript) in the following script:

How would the developer resolve this issue?
A. Replace' with double Quote*
B. Use
D. Use
During the testing of the login form, QA finds out thatthe first time the user can log in, but every other login attempt from another computer leads to the homepage and the basket being emptied. Developers tried to debug the issue, but when they add a breakpoint to the login action, it is not hit by the debugger.
What should the Architect recommend developers to check?
A. Remove CSRF protection from Login Form Action.
B. Add remote include for the login page
C. Add disable cache page in the template ISML -
D. Check Login Form and any included templates for includes that enable page caching.