Rate this post

100% Passing Guarantee – Brilliant CCM-101 Exam Questions PDF [Oct-2022]

CCM-101 Dumps 2022 – NewSalesforce CCM-101 Exam Questions

Salesforce CCM-101 Exam Syllabus Topics:

Topic Details
Topic 1
  • Automatically Change the Search Result Order
  • Configuring Searchable Attributes
  • Editing Category Configuration
Topic 2
  • Configuring Catalog-Level Image Management Settings
  • Configuring Search Refinements for a Site and a Category
Topic 3
  • Applying a Rule with Dynamic Attributes to Change Product Order in a Category
  • Managing the Exclusion of Category Names
Topic 4
  • Using Search Placement or Search Rank to Change Product Order in a Category
  • Managing Synonyms and Hypernyms
Topic 5
  • Managing Variation Masters and Variation Products
  • Using Dynamic Customer Groups
  • Adding a Banner to a Category
Topic 6
  • Using the Storefront Toolkit to View Search Information
  • Using Price Books to Manage Prices
Topic 7
  • Manually Changing the Order of Products in a Category
  • Configuring Catalog-Level Product Attribute Settings
Topic 8
  • Using Static Customer Groups
  • Inventory Settings & Management
  • Managing Product Attributes

 

NEW QUESTION 36
A Newsletter controller contains the following route:
Server.post(‘Subscribe’, function (req,res,next){
var newsletterForm = server.forms.getForm(‘newsletter’);var CustomObjectMgr = require(‘dw/object/CustomObjectMgr’); if(newsletterForm.valid){ try{ var CustomObject = CustomObjectMgr.createCustomObejct(‘NewsletterSubscription’, newsletterform.email.value); CustomObject.custom.firstName = newsletterForm.fname.value; CustomObject.custom.lastName = newsletterForm.lname.value;-
} catch(e){
//Catch error here
}
}
next();
});
Assuming the Custom Object metadata exists, why does this route fail to render the newsletter template when the subscription form is correctly submitted?

 
 
 
 

NEW QUESTION 37
A retailer notices that the Account Addresses page is showing the wrong shopper’s address.
Which tool should the developer start with to identify the issue?

 
 
 
 

NEW QUESTION 38
A developer needs to update the package.json file so that it points to the hock file for a cartridge, using the hooks keyword. Which snippets work correctly when added to the file?:

 
 
 
 

NEW QUESTION 39
A Digital Developer has a site export file on their computer that needs to be imported into their sandbox.
How should the developer update their sandbox with the data in this file?

 
 
 
 

NEW QUESTION 40
A Digital Developer is asked to optimize controller performance by lazy loading scripts as needed instead of loading all scripts at the start of the code execution.
Which statement should the Developer use to lazy load scripts?

 
 
 
 

NEW QUESTION 41
Business Manager has the configuration:
* Active Log category is “root”
* Log level of WARN
The code below is executing:
var log = Logger.getLogger(“products”);
Using this information, which two logs will be written?
Choose 2 answers

 
 
 
 

NEW QUESTION 42
A merchant has reported that customers are seeing low stock items at the top of their search results, giving them a subpar customer experience and impacting conversion.
How might this issue be resolved to ensure a better customer journey?

 
 
 
 

NEW QUESTION 43
A Storefront is designed so that multiple pages share a common header and footer layout.
Which ISML tag should a developer use on the templates for these pages to avoid code repetition in the most effective way?

 
 
 
 

NEW QUESTION 44
A Digital Developer is working in a sandbox on a site named test-site using the domain test.demandware.net. The Developer needs to compile a url to make an Open Commerce API (OCAPI) request that returns product information.
By default, which URL format is a proper Open Commerce API for Sandbox?

 
 
 
 

NEW QUESTION 45
The following sample code is NOT providing the desired results. The Digital Developer needs to add an entry to the logs to debug the problem.

Which statement correctly adds a log entry?

 
 
 
 

NEW QUESTION 46
A Digital Developer has a new requirement to disable the “Discover” credit card type for all checkouts.
What does the Developer need to change in Business Manager to fulfill this requirement?

 
 
 
 

NEW QUESTION 47
A developer is working on a new site for the U.S based on an existing Canadian site. One of the requirements is a change to the address form. The current Canadian form has an <options> list with the correct two-letter abbreviation for the provinces.
The U.S. requirements are to:
* Have an <options> list with the correct two-letter abbreviation for the states in place of the province field.
* Set the U.S site locale.
* Add the options list field definition to the XML file.
How should the developer set up the files before making the required edits?

 
 
 
 

NEW QUESTION 48
A Digital Developer needs to add a new form to the shopping cart page to allow customers to enter their rewards pass ID. There is already an existing Cart.js controller that handles processing of the other cart forms. In addition, a form field node is in the form XML and the necessary form input is present in the ISML template.
The code below is the submit button for the ISML markup.

What additional steps must occur before the Digital Developer can begin writing the processing code for this request?

 
 
 
 

NEW QUESTION 49
A Digital Developer is adding support for an additional language other than the default. The locale code for the new language is de.
In which folder should the developer place resource bundles?

 
 
 
 

NEW QUESTION 50
Recent code changes to an existing cartridge do not appear correctly on a Storefront. The developer confirms that the code is uploaded in the IDE and ensures that the cartridge is associated with the sandbox.
Which two additional steps should the developer take to troubleshoot this problem?
Choose 2 answers

 
 
 
 

NEW QUESTION 51
A Digital Developer suspects a logical error in a script.
Which action will help locate the error?

 
 
 
 

NEW QUESTION 52
In Log Center, a developer notes a number of Cross Site Request Forgery (CSRF) log entries. The developer knows that this happens when a CSRF token is either not found or is invalid, and is working to remedy the situation as soon as possible.
Which two courses of action might solve the problem?
Choose 2 answers

 
 
 
 

NEW QUESTION 53
Given the file structure below, which ISML method call renders the customLandingPage template?

 
 
 
 

NEW QUESTION 54
A developer needs to display a products list of their “Women Dresses” category in a new web application, independent of their main B2C Commerce site. This custom listing page needs to be styled differently from the existing one, as per marketing requirements.
Which B2C Commerce tool should the developer use to collect the necessary information?

 
 
 
 

NEW QUESTION 55
A merchant is selling a new product line of televisions. In order to deliver a good customer experience, the merchandising team wants the screen size to be incorporated into the search and navigation journey.
Which two things can the developer do to facilitate this for them?
Choose 2 answers

 
 
 
 

NEW QUESTION 56
The developer is asked to enhance the functionality of an existing controller route by adding information to the response’s viewData.
How should the developer approach this task while following SFRA best practices?

 
 
 
 

NEW QUESTION 57
Given a file in a plug-in cartridge with the following code:
‘use strict’:
Var base = module.superModule;
Function applyCustomCache (req,res,next){
res.CachePeriod = 6; //eslint-disable-line no-param-reassign
res.cachePeriodUnit = ‘hours’) //eslint-disable-line no-param-reassign
next();
}
Module.exports = base;
Module.exports.applyCustomCache = applyCustomCache;
What does this code extend?

 
 
 
 

NEW QUESTION 58
A Digital Developer has been given a requirement to add fault tolerance to an existing web service integration that uses Service Framework. Administrators at Universal Containers need to be able to configure the timeout and rate limiting.
Which approach should the Developer use to implement the requirement?

 
 
 
 

NEW QUESTION 59
Which code sample is required to use a custom tag provided in SiteGenesis in an ISML template?

 
 
 
 

NEW QUESTION 60
Given the above OCAPI definitions, which permission or permissions apply?

 
 
 
 

Free CCM-101 braindumps download: https://www.braindumpsit.com/CCM-101_real-exam.html

         

Leave a comment

Your email address will not be published. Required fields are marked *

Enter the text from the image below