Labour Day Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: mxmas70

Home > Salesforce > Architect Exams > B2C-Commerce-Architect

B2C-Commerce-Architect Salesforce Certified B2C Commerce Architect (SP23) Question and Answers

Question # 4

The storefront integrates with a REST based Address verification service (AVS) that uses token based security. The sequence of calls in the API documentation for this AVS looks like the following

1. Client authentication call, which contains the merchantId and secret in a GET request and returns a token in the response.

2. Address verification call, which contains the token and the address to verify in a POST request.

Once the token is obtained, it is valid for hours and it is not needed to request a new one for subsequent address verification calls, the AVS charges for every request made no matter if it is client authentication call or address verification call.

Which three strategies could be applied to allow for efficient use of the service without compromising security? Choose 3 answers

A.

Apply page caching to the client authentication controller that is used with AJAX.

B.

Obtain the token from local storage of the browser and update it once It expires.

C.

Obtain the token from a custom cache before making the client authentication call.

D.

Use HTTPService caching for the client authentication call.

E.

Use a job to store and update the token in a custom object that is used from the storefront code

Full Access
Question # 5

The Client has requested an Architect’s help in documenting the architectural approach to a new home page. The requirements provided by the business are:

• Multiple areas of static image content, some may need text shown at well

• The content page must be Realizable

• A carousel of featured products must be shown below a banner 101191

• Recommended categories will be featured based on the time of year

Which two solutions would fulfil these requirements?

Choose 2 answers

A.

Leverage B2C Commerce Content Management Service

B.

Leverage B2C Commerce locales in Business Manager

C.

Leverage B2C Commerce content slots and assets

D.

Leverage B2C Commerce Page Designer with a dynamic layout.

Full Access
Question # 6

Given a website launched to production, the Architect can rely on several SFCC Business Manager tools that provide an automatic notification feature.

Which three tools have such a feature and do not require to be monitored manually?

Choose 3 answers

A.

Job Schedules

B.

Custom Log Settings

C.

Analytics Conversion Reports

D.

Pipeline Profiler

E.

Quota Status

Full Access
Question # 7

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.

Full Access
Question # 8

During implementation, the team found that there is a notification controller exposed for an external service that marks the order as paid when notification is received. The notification URL is sent to the service together with the payment request and contains only the URL with orderlD as the parameter.

What should the Architect recommend to the team in order to prevent the unauthorized usage of the controller to mark the orders as paid?

A.

Add a customer number in the callback URL and match the customer number against the one stored on the order.

B.

Add HTTPS restriction to the controller start node.

C.

Add an order token in the callback URL and match the token against the one stored on the order.

D.

Add a session attribute and validate it on the callback.

Full Access
Question # 9

An ecommerce site has dynamic shipping cost calculation. it allows the customers to see their potential shipping costs on the Product Detail Page before adding an item to the cart.

For this feature, shipping touts are calculated using the following logic:

• Set the shipping method on the Basket

• Add the item to the basket, calculate the basket total and get the shipping cost for this method

• Remove the item from the Basket to restore the original state

• The above process is repeated for each shipping method

During the testing it was discovered that the above code violates the spi.basket.addResolveInSameResquest quota.

What should the Architect do to resolve this issue and maintain the business requirement?

A.

Omit the removal of the Item and speed up the process for the customer by adding the product to the basket for them.

B.

Omit the calculation of shipping cost until the customer is ready to check out and has chosen the shipping method they want to

C.

Wrap each Individual step of the process its own transaction Instead of using one transaction for all steps.

D.

Wrap the adding of product and shipping cost calculation in a transaction which Is then rolled back to restore the original state

Full Access