Skip to main content

B2C-COMMERCE-ARCHITECT Real Exam Questions

Salesforce Certified B2C Commerce Architect (Arch-303)

65 questions available · Page 1 of 7

Updated Exam DumpsVerified AnswersPass Guarantee

Get Complete Exam Dumps
Question 1 Single choice

A Client has automated builds that deploy the code; however, recent builds started failing with compilation
issues, which are not reproducible in developer's environment.

Whet first step needs to be taken to identify and fix the issue?

  1. A

    Clean up build server work space and run job again.

  2. B

    Verify the modules versions used to generate the code.

  3. C

    Verify the generated JavaScript and CSS for the build.

  4. D

    Recreate the jobin the build server to verify compilation issues.

Show answer and explanation

Correct answer: B

Question 2 Single choice

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?

  1. 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.

  2. 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.

  3. 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.

  4. 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.

Show answer and explanation

Correct answer: D

Question 3 Single choice

An integration cartridge implements communication between the B2C Commerce Storefront and a third-party service provider. The cartridge contains the localServiceRegistry code:

How does this code sample accomplish authentication to the service provider?

  1. A

    By Issuing a Basic Auth requestto the service provider.

  2. B

    By performing a signed SOAP Auth request using a certificate.

  3. C

    By wrapping the authentication service call with Basic Auth.

  4. D

    By disabling Basic Auth and executing the service authentication call.

Show answer and explanation

Correct answer: D

Question 4 Single choice

A third party survey provider offers both an API endpoint for individual survey data and an SFTP server endpoint that can accept batch survey data. The initial implementation of the integration includes

1. Marking the order as requiring a survey before order placement
2. On the order confirmation pace, the survey form is displayed for the customer to fill
3. The data is sent to the survey provider API, and the order it marked as not requiring a survey

Later it was identified that this solution is not fit for purpose as the following issues and additional requirements were identified:

1. If the API call fails, the corresponding survey data is lost. The Business requires to avoid data loss.
2. Some customers skipped the form. The Business require sending a survey email to such customers.
3. The Order Management System (OMS) uses a non-standard XML parser it did not manage to parse orders with the survey, until the survey attribute was manuallyremoved from the xml.

How should the Architect address the issues and requirements described above?

  1. A

    Create a custom session attribute when the survey is required. Send to the API endpoint in real-time.
    On failure, capture the survey data in the sessionand reprocess, use me session attribute to send emails for the cases when survey was skipped.

  2. B

    Create a custom object to store the survey data. Send to the API endpoint using a job. On success, remove the custom object. On failure, send the survey datawith API from the next execution of the same job. Use the custom object to send emails for the cases when the survey was skipped.

  3. C

    Create a custom object when the survey is required Send to the API endpoint in real-time. On success, remove the object. Onfailure, capture the survey data in the custom object and later reprocess with a job. Use the custom object to send emails for the cases when survey was skipped.

  4. D

    Send the survey data to the API endpoint in real-time until the survey data is successfully captured.
    Instruct the OMS development team to update their XML parser, use the Order survey attribute to send emails for the cases when the survey was skipped.

Show answer and explanation

Correct answer: C

Question 5 Single choice

Northern Trail Outfitters uses an Order Management system (OMS), which creates an order tracking number for every order 24 hours after receiving it. The OMS provides only a web-service interface to get this tracking number. There is a job that updates this tracking number for exported orders, which were last modified yesterday.

Part of this jobs code looks like the following:

Based on the above description and code snippet, which coding best practice should the Architect enforce?

  1. A

    Post-processing of search results is a bad practice that needs to be corrected.

  2. B

    The transaction for updating of orders needs to be rewritten to avoid problems with transaction size.

  3. C

    Configure circuit breaker andtimeout for the OMS web service call to prevent thread exhaustion.

  4. D

    Standard order import should be used instead of modifying multiple order objects with custom code.

Show answer and explanation

Correct answer: C

Question 6 Multiple choice

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:

1. Multiple areas of static image content, some may need text shown at well
2. The content page must be Realizable
3. A carousel of featured products must be shown below a banner 101191
4. Recommended categories will be featured based on the time of year

Which two solutions would fulfil these requirements? Choose 2 answers

  1. A

    Leverage B2C Commerce ContentManagement Service

  2. B

    Leverage B2C Commerce locales in Business Manager

  3. C

    Leverage B2C Commerce content slots and assets

  4. D

    Leverage B2C Commerce Page Designer with a dynamic layout.

Show answer and explanation

Correct answers: C, D

Question 7 Single choice

A Retailer has a single storefront site and a Product Management System (PIM).

The Pin is Generating the master catalog and storefront categorization catalog every day and it uploading them to SFTP How should the Architect configure the import job flows following the best practices?

  1. A

    1st flow is global to download the files horn SFTP. 2nd flow is global to import the master catalog. 3rd flow Is global to Import the storefront catalog.

  2. B

    1st flow is global to download the files from SFTP. 2nd flow is global to import the storefront catalog 3rd flow K global to Import the master catalog.

  3. C

    1st flow is assigned to the site to download the files from SFTP. 2nd flow is assigned to thesite to Import the master catalog. 3rd flow K global to Import the storefront catalog.

  4. D

    1st flow is assigned to the site to download the files from SFTP. 2nd flow is assigned to the site to Import the storefront catalog 3rd flow It global to Import themaster catalog.

Show answer and explanation

Correct answer: A

Question 8 Single choice

A company manages its regional operations as separate businesses. The regional sites (Site A and Site B) operate with:

1. Separate realms
2. Deferent code bates
3. Different category navigation menus
4. Frequent updates on category structure

The requirement from the business is to providehreflang link tags on category pages pointing to the same category on the other regional site. Example MTML for one of these links as displayed on Site A is:

Which solution should the Architect choose while keeping performance in mind?

  1. A

    Create a newcustom attribute on the Category. Populate the attribute with the other entire site URLs corresponding to locales In JSON Format. Use the attribute to display the hreflang link tag.

  2. B

    Create a new custom object type Populate the hreflang mapping for eachcategory and locale in this custom object. Use the custom object to display the hreflang link tag.

  3. C

    Create additional locales in al realms create a new custom attribute on the category that is localized.
    Populate the attribute with the other site URLs and use it to display the hreflang tag.

  4. D

    Create a custom Business Manager module. Ask the business to maintain the hreflang link tags for each regional site in this Business Manager module.

Show answer and explanation

Correct answer: A

Question 9 Single choice

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?

  1. A

    Four Service Configurations. Four Service Profiles,One Service Credential

  2. B

    Four Service Configurations. Four Service Profiles, Four Service Credentials

  3. C

    Four Service Configurations. One Service Profile, One Service Credential.

  4. D

    One Service Configuration, Four Service Profiles, One Service Credential.

Show answer and explanation

Correct answer: C

Question 10 Multiple choice

The Client is creating a new Storefront and their requirements include:

1. ApplePay support
2. Log -n through a standard OAuth2 social media account
3. One Okie checkout process
4. Ay Btesting for promotions

Which two items require technical documentation for customizing the Storefront Reference Architecture? Choose 2 answers

  1. A

    One Click checkout process

  2. B

    ApplePay support

  3. C

    log in through a standard OAuth2 social media account

  4. D

    A/B testing for promotions

Show answer and explanation

Correct answers: A, B