Free Salesforce B2C-Commerce-Architect Exam Actual Questions

The questions for B2C-Commerce-Architect were last updated On Nov 7, 2024

Question No. 1

The client provided these business requirements:

* The B2C Commerce storefront will integrate with the client's Order Management System (OMS).

* The storefront will provide reel-time order export of successfully pieced orders

The OMS supports both web service export end SFTP batch order export, but the client has expressed concern about the availability of the OMS.

Which two solutions satisfy the requirements and address the OMS reliability concern?

Choose 2 answers

Show Answer Hide Answer
Correct Answer: B, C

Given the concerns about the reliability of the OMS, implementing scheduled batch exports ensures that order data is not lost due to potential OMS downtime and allows for reattempting failed exports. Option B uses SFTP for a high-frequency batch export, which can be scheduled to run multiple times a day, ensuring minimal delay in order synchronization while marking orders as exported upon successful transmission. Option C provides a similar safeguard but via web service, which can be scheduled to run hourly. Both methods enable tracking of export status and can handle temporary downtimes by reattempting the export until successful, aligning with the need for reliability in integration processes.


Question No. 2

The following promotions are configured with no exclusivity (can be combined with any other promotion) in a -1month campaign:

* Free correct- in -store shipping

* 20% accessories products discount, applies for all customers

* $5 off coupon based discount, sent to a selected group of customers

The combination of above promotions allows customers to get 16 socks for free in store. This was unintended, and the Client If considering disabling the coupon. The Client is concerned about a potential spike in the number of Call Center calls from customers who had the coupon code added to their baskets before it was disabled. As basket lifetime is set to 30 days for all customers, this can continue for the full length of the campaign.

What solutionshould the Architect suggest to keep the Call Center calls to a minimum?

Show Answer Hide Answer
Correct Answer: D

Reducing the basket lifetime is a strategic approach to minimizing the impact of disabling a promotional coupon. This action will cause baskets that may still contain the now-disabled coupon to expire sooner, thereby reducing the potential volume of calls to the Call Center from customers inquiring about the coupon. This method also avoids the drastic measure of clearing all existing baskets or restarting the production instance, which could disrupt user experience and lead to further customer dissatisfaction.


Question No. 3

An Architect has been asked by the Business to integrate a newpayment LINK cartridge. As part of the integration, the Architect has created four new services to access various endpoints in the integration.

How can the Architect move the new services to Production when the integration is ready for launch?

Show Answer Hide Answer
Correct Answer: D

For deploying new services related to a payment LINK cartridge to Production, the correct method is through Code Replication (D). This approach ensures that all new code changes, including the integration services, are consistently applied across different environments. Code replication covers deploying all changes made in code, scripts, and service configurations from a staging or development environment to the production environment. This process ensures that all new functionalities are tested in a controlled environment before being moved to production, reducing the risk of errors affecting the live site.


Question No. 4

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

Show Answer Hide Answer
Correct Answer: A, D, E

The Salesforce B2C Commerce Business Manager tools that feature automatic notifications are:

Option A (Job Schedules): Business Manager can send notifications based on job schedules, alerting users when a scheduled job has completed, failed, or met specific conditions. This feature helps in monitoring automated processes without manual oversight.

Option D (Pipeline Profiler): This tool provides automatic notifications regarding the performance of different pipelines, allowing architects and developers to monitor site performance and troubleshoot issues proactively.

Option E (Quota Status): Automatically notifies administrators when certain quotas are reached or exceeded, such as API call limits or data storage limits, which is crucial for maintaining site stability and performance.

These tools are essential for proactive site management, ensuring that administrators can address potential issues before they affect the site's operation.


Question No. 5

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?

Show Answer Hide Answer
Correct Answer: B

To resolve the issue of Cross Site Scripting (XSS) where the quick search is not escaped, the developer should use the <isprint> tag with the 'jshtml' encoding option (Answer B). This method ensures that any JavaScript included in the search phrase is properly escaped, preventing the execution of potentially malicious scripts. The 'jshtml' encoding is specifically designed to encode text for HTML contexts where JavaScript is embedded, providing a secure way to handle user input in Salesforce B2C Commerce.