[Nov-2022] Dumps Practice Exam Questions Study Guide for the CCM-101 Exam [Q88-Q105]

Share

[Nov-2022] Dumps Practice Exam Questions Study Guide for the CCM-101 Exam

CCM-101 Dumps with Practice Exam Questions Answers


Salesforce CCM-101 Exam Syllabus Topics:

TopicDetails
Topic 1
  • Managing Variation Masters and Variation Products
  • Using Dynamic Customer Groups
  • Adding a Banner to a Category
Topic 2
  • Using the Storefront Toolkit to View Search Information
  • Using Price Books to Manage Prices
Topic 3
  • Using Search Placement or Search Rank to Change Product Order in a Category
  • Managing Synonyms and Hypernyms
Topic 4
  • Using Static Customer Groups
  • Inventory Settings & Management
  • Managing Product Attributes
Topic 5
  • Configuring Catalog-Level Image Management Settings
  • Configuring Search Refinements for a Site and a Category

 

NEW QUESTION 88
A merchant asks a developer to create a Cache Partition for the home page, so that when the home page is edited, only the home page is cleaned.
Given the above requirement, where should the developer create that partition in Business Manager?

  • A. Site > Site Preferences > Cache
  • B. Operations > Site > Manage Sites > Cache
  • C. Administration > Sites > Manage Sites > Site > Cache
  • D. Operations > Cache > Site

Answer: B

 

NEW QUESTION 89
A developer configures the dw.json file and needs to fill in the necessary parameters to complete the task.
Which three parameters are required when using npm scripts?
Choose 3 answers

  • A. Site ID
  • B. CSRF Token
  • C. Hostname
  • D. Code Version
  • E. Usemame/Password

Answer: A,B,D

 

NEW QUESTION 90
A developer has the following files in template/resources:
account.proierties
weight.unit=kilos
account_en.propierties
weight.unit=stones
account_en_US.propierties
weight.unit= pounds
Using the default locale configuration, what is the current outcome of the page that renders the account.isml template snippet below when visiting the Sofrefront with the English for Canada(en_CA) locale= Your parcel weighs 10 ${Resource.msg('weight.unit','account')}

  • A. Your parcel weighs 10 pounds.
  • B. Your parcel weighs 10 undefined.
  • C. Your parcel weighs 10 stones.
  • D. Your parcel weighs 10 kilos

Answer: C

 

NEW QUESTION 91
A developer has these requirements for out-of-stock products:
* Save the SKUs of the out-of-stock products that the customer is interested in
* Save the customer email regardless if the customer is a guest or registered
* Email the customer when the product is back-in-stock
Which step should the developer perform as part of the solution to achieve the requirements?

  • A. Create a new set-of-string type custom attribute to the system object type Product to save all the customer email addresses for back-in-stock notification.
  • B. Create a new set-of-string type custom attribute to the system object type Profile to save all the SKUs and use the existing email field for the email.
  • C. Create a new custom object type that has a set-of-string type custom attribute for the SKUs and a string for the email field.
  • D. Create a new system object type that has a set-of-string type custom attribute for the SKUs and a string for the email field.

Answer: A

 

NEW QUESTION 92
Given a job step configured in the steptype.json, a developer needs to add a custom status code
"No_FILES_FOUND".
Which code snippet will complete the requirement?

  • A. var status = require('dw/system/status');
    return new Status(Status.OK, 'NO_FILES_FOUND');
  • B. var status = {success: 'OK'. Message: 'NO_FILES_FOUND'};
    return status;
  • C. return 'NO_FILES_FOUND
  • D. this.status = 'NO_FILES_FOUND'
    return this;

Answer: A

Explanation:

 

NEW QUESTION 93
A developer is asked to create a controller endpoint that will be used in a client-side AJAX request. Its purposes is to display updated information to the user when the request is completed, without otherwise modifying the appearance of the current page.
According to SFRA practices, which method best supports this objective?

  • A. res.print()
  • B. res.render()
  • C. res.json()

Answer: C

 

NEW QUESTION 94
A Digital Developer needs to check for product inventory in a specific inventory list using the Open Commerce API.
An example request URL is:

Which resource_id value enables the appropriate resource?

  • A. /inventory_list_search
  • B. /inventory_lists/**
  • C. /products/*
  • D. /inventory_lists/*

Answer: C

 

NEW QUESTION 95
A developer uses the call() instance method of dw.svc.Service to invoke a web service and implemented the callback methods defined by the dw.avc.ServiceCaliback class.
Which callback method is required only when invoking a SOAP service?

  • A. mockCall
  • B. initServiceClient
  • C. parseResponse
  • D. createRequeat

Answer: B

 

NEW QUESTION 96
A client uses tax tables in Business Manager to calculate tax. They recently started shipping to a new country, Italy, and the taxi s not being calculated correctly on the Storefront What is the likely problem?

  • A. Tax Locale is configured wrong
  • B. Tax Region is configured wrong.
  • C. Tax Jurisdiction is missing
  • D. Tax Country is missing

Answer: A,C

 

NEW QUESTION 97
A business user wants to add a link to a content page from within the body of another content asset. The target content asset ID is: terms-and-conditions.
Which link function generates the correct link?

  • A. $http('Content-Page', 'cid', 'terms-and-conditions')$
  • B. $include('Page-Include', 'cid', 'terms-and-conditions')$
  • C. $url('Page-Show', 'cid', 'terms-and-conditions')$
  • D. $httpUrl('Content-Show', 'cid', 'terms-and-conditions')$

Answer: D

 

NEW QUESTION 98
A client that sells to multiple countries in Europe needs to disable Apple Pay for Denmark.
Which Business Manager module is used to achieve this requirement?

  • A. Apple Pay
  • B. Payment Processors
  • C. Locale Payments
  • D. Payment Methods

Answer: A

 

NEW QUESTION 99
A developer working on a simple web service integration is asked to add appropriate logging to allow future troubleshooting.
According to logging best practices, which code should the developer write to log when an operation succeeds, but has an unexpected outcome that may produce side effects?

  • A. Logger.warn('Unexpected service response')
  • B. Logger.info('Unexpected service response')
  • C. Logger.error('Unexpected service response')
  • D. Logger.debug('Unexpected service response')

Answer: A

 

NEW QUESTION 100
Which two items are appropriate content of custom logs implemented at checkout?
Choose 2 answers:

  • A. Payment gateway service response code
  • B. Transaction's credit card information
  • C. Customer's password at post-checkout sign up
  • D. Order failure information

Answer: A,D

 

NEW QUESTION 101
Below is a form definition snippet from the newsletter.xml file:
<?xml version="1.0"?>
<form xmlns=http://www.demandware.com/xml/form/2008-04-15>
<field formid="email" lavel="Email" type="String" mandatory="True" max-length="50" />
</form>
Which line of code creates a JSON object to contain the form data?

  • A. Server.forms.getForm('newsletter');
  • B. Server.form.getForm('dwfrm_newsletter')
  • C. Server.forms.getForm('dwfrm_newsletter')
  • D. Server.form.getForm('newsletter');

Answer: A

Explanation:
En el controller:

En el Formulario:

 

NEW QUESTION 102
A merchant wants customers to be able to order gift vouchers via their site. Since they can issue an unlimited number of these digital vouchers, this item should be available to sell at all items.
How can a developer use Business Manager to ensure that the gift vouchers are always available?

  • A. Set StockLevel = maxAllocation for the producto.
  • B. Check the Available to Sell (ATS) flag dor the producto set
  • C. Manually set the inventory to a high number.
  • D. Check the perpetual flag in the product inventory record

Answer: D

 

NEW QUESTION 103
Given the SFRA Controller below:

Why would a JavaScript debugger, that is stopped at line 06, fall to show the viewdata variable in the inspection tool?

  • A. viewdata is a B2C Script reserved name.
  • B. viewdata is assigned but not declared.
  • C. viewdata is declared but not assigned.
  • D. cache. applyDefauItCache is not a valid middleware.

Answer: B

 

NEW QUESTION 104
A digital instance has one site, with one master product catalog separate from the site catalog. Some, but NOT all, products in the master catalog are assigned to categories of the site catalog.
Using Business Manager, how can a Digital Developer create a catalog export file that contains only the products assigned to the site catalog?

  • A. Use the Catalog Export module to export the master catalog, with a category-assignment search to export specific products.
  • B. Use the Catalog Export module to export the site catalog.
  • C. Use the Site Import & Export module to export both the site catalog and the master catalog in a single archive.
  • D. Use the Site Import & Export module to export the master catalog, filtered by site catalog categories to export specific products.

Answer: A

 

NEW QUESTION 105
......

Free B2C Commerce Developer CCM-101 Exam Question: https://www.testkingit.com/Salesforce/latest-CCM-101-exam-dumps.html

CCM-101 by B2C Commerce Developer Actual Free Exam Practice Test: https://drive.google.com/open?id=1D47AO1AEDDNwGLuMOpKyvcP-KaJD-fzT