This page was exported from IT Certification Exam Braindumps [ http://blog.braindumpsit.com ] Export date:Sun Oct 6 18:30:06 2024 / +0000 GMT ___________________________________________________ Title: [Q36-Q60] 100% Passing Guarantee - Brilliant CCM-101 Exam Questions PDF [Oct-2022] --------------------------------------------------- 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: TopicDetailsTopic 1Automatically Change the Search Result Order Configuring Searchable Attributes Editing Category ConfigurationTopic 2Configuring Catalog-Level Image Management Settings Configuring Search Refinements for a Site and a CategoryTopic 3Applying a Rule with Dynamic Attributes to Change Product Order in a Category Managing the Exclusion of Category NamesTopic 4Using Search Placement or Search Rank to Change Product Order in a Category Managing Synonyms and HypernymsTopic 5Managing Variation Masters and Variation Products Using Dynamic Customer Groups Adding a Banner to a CategoryTopic 6Using the Storefront Toolkit to View Search Information Using Price Books to Manage PricesTopic 7Manually Changing the Order of Products in a Category Configuring Catalog-Level Product Attribute SettingsTopic 8Using Static Customer Groups Inventory Settings & Management Managing Product Attributes   NEW QUESTION 36A 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?  Custom Objects can only be created by Job scripts  The Subscribe route is missing the server.middleware.httpt middleware.  The CustomObjectMgr variable should be declare outside of the route.  The Custom Object creation is not wrapped in a Transaction. NEW QUESTION 37A 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?  Pipeline profiler  Code Profiler  Storefront Toolkit  Reports and Dashboards Module NEW QUESTION 38A 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?:  { “hooks”: “./cartridge/scripts/hooks.json” }  { “hooks”: “./scripts/hooks.json” }  { hooks: “./cartridge/scripts/hooks.json” }  { hooks: ./scripts/hooks.json } NEW QUESTION 39A 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?  Connect and import the file using the remote option within the Site Import & Export Business Manager module.  Upload and import the file using the local option within the Site Import & Export Business Manager module.  Upload the file to the Impex WebDAV directory and import using the Site Import tool within UX Studio.  Upload the file to the Static WebDAV directory and import using the Import & Export Business Manager module. NEW QUESTION 40A 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?  importPackage () method  $.ajax () jQuery method  local include  require () method NEW QUESTION 41Business Manager has the configuration:* Active Log category is “root”* Log level of WARNThe code below is executing:var log = Logger.getLogger(“products”);Using this information, which two logs will be written?Choose 2 answers  log.warn(“This is a warn message”);  log.error(“This is an error message”);  log.info(“This is an info message”);  log.debugfThis is a debug message”); NEW QUESTION 42A 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?  In Business Manager, select Show Orderable Products Only at the root level to hide any products that are currently out of stock.  In Business Manager, enter a higher boost factor for availability in Searchable Attributes.  In Business Manager, set an availability low ranking threshold in Search Preferences.  Create a job that sets all unavailable products to be hidden. Schedule the job to run hourly to clean up the catalog on a regular basis. NEW QUESTION 43A 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?  <isdecorate> … </isdecorate>  <iscontent> … </iscontent>  <isreplace> … </isreplace>  <isinclude> … </isinclude> NEW QUESTION 44A 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?  https://test.demandware.com/dw/shop/products/M1355?client_id=aaa…  https://www.test.com/s/test-site/sfc/shop/products/M1355?client_id=aaa…  https://test.demandware.net/s/test-site/dw/shop/v18_3/products/M1355?client_id=aaa…  https://www.test.com/dw/shop/v18_3/products/M1355?client_id=aaa… NEW QUESTION 45The 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?  Logger.exception(‘Unable to find Apple Pay payment instrument for order.’+paymentInstruments);  Logger.getErrorLog().log(‘Unable to find Apple Pay payment instrument for order.’+paymentInstruments);  Logger.fault(‘Unable to find Apple Pay payment instrument for order.’+paymentInstruments);  Logger.error(‘Unable to find Apple Pay payment instrument for order.’+paymentInstruments); NEW QUESTION 46A 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?  Checkout exclusion rules in the Merchant Tools > Site Preferences > Checkout Preferences module.  Credit card exclusion rules in the Merchant Tools > Site Preferences > Payment Preferences module.  Credit cards in the Merchant Tools > Ordering > Payment Methods module.  Credit card exclusion rules in the CreditCardType.json configuration file. NEW QUESTION 47A 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?  Create a copy of existing address.xml file in the default folder. Rename that file to adres_US.xml  Create a new sub-folder in the forms folder. Name it US. Copy existing address.xml file in the new folder.  Create a copy of existing address.xml file in the default folder. Rename that file to address_en_US.xml  Create a new sub-folder in the forms folder. Name it en_US. Copy existing address.xml file in the new folder. NEW QUESTION 48A 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?  Option A  Option B  Option C  Option D NEW QUESTION 49A 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?  templates/de  templates/default  templates/resources  templates/default/resources NEW QUESTION 50Recent 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  Check that the search index was recently rebuilt.  Check the Business Manager site cartridge path.  Check the Storefront site cartridge path.  Check that the correct code version is selected. NEW QUESTION 51A Digital Developer suspects a logical error in a script.Which action will help locate the error?  Submit a support ticket to B2C Commerce.  Check request logs for evidence of the logical error.  Put breakpoints in the code, debug, and examine variable values.  Print all values in the script node called before the current script. NEW QUESTION 52In 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  Add the token in the ISML template.  Extend the CSRF token validity to avoid timeouts.  Delete the existing CSRF whitelists in Business Manager.  Add csrfProtection.generateToken as a middleware step in the controller. NEW QUESTION 53Given the file structure below, which ISML method call renders the customLandingPage template?  ISML.renderTamplate(‘cartridge/templates/default/content/custom/customLandingPage’);  ISML(‘content/custom/customLandingPage’);  ISML.render(‘content/custom/customLandingPage’);  ISML.renderTemplate(‘content/custom/customLandingPage’); NEW QUESTION 54A 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?  The ProductSearch resource of the Shop OCAPI.  The existing category’s endpoint to perform a REST call.  The iframe of the existing category page.  The Search-Show Controller URL to perform a web crawl. NEW QUESTION 55A 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  Create a new search refinement for a Boolean value true or false and label it “big screen.”  Define a new searchable attribute for Screen Size.  Configure catalog-level search refinement definition for Screen Size.  Configure Screen Size threshold search refinement bucket definitions. NEW QUESTION 56The 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?  Replace the callback function of the existing route using superModule.  Use the “extend” method of the server module for the existing route.  Copy the existing route in a new cartridge and modify where necessary.  Use the “append” method of the server module for the existing route. NEW QUESTION 57Given 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-reassignres.cachePeriodUnit = ‘hours’) //eslint-disable-line no-param-reassignnext();}Module.exports = base;Module.exports.applyCustomCache = applyCustomCache;What does this code extend?  A controller  A middleware script  A decorator  A model NEW QUESTION 58A 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?  Implement a ServiceUnavailableException exception handler to execute fallback code.  Implement a condition that checks to see if the response was empty and execute fallback code if true.  Create a site preference to store timeout settings and implement an IOException handler to execute fallback code.  Use the setTimeout method to execute fallback code if the request has NOT completed. NEW QUESTION 59Which code sample is required to use a custom tag provided in SiteGenesis in an ISML template?  Option A  Option B  Option C  Option D NEW QUESTION 60Given the above OCAPI definitions, which permission or permissions apply?  Allows external applications to create coupons  Allows external applications to create, update, and delete coupons  Allow external applications to create, update, and delete both coupons and coupon codes  Allows external applications to update coupons  Loading … Free CCM-101 braindumps download: https://www.braindumpsit.com/CCM-101_real-exam.html --------------------------------------------------- Images: https://blog.braindumpsit.com/wp-content/plugins/watu/loading.gif https://blog.braindumpsit.com/wp-content/plugins/watu/loading.gif --------------------------------------------------- --------------------------------------------------- Post date: 2022-10-11 12:11:23 Post date GMT: 2022-10-11 12:11:23 Post modified date: 2022-10-11 12:11:23 Post modified date GMT: 2022-10-11 12:11:23