CCM-101 Exam Question 1

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?
  • CCM-101 Exam Question 2

    Universal Containers has expanded its implementation to support German with a locale code of de. The current resource bundle is checkout.properties.
    To which file should the developer add German string values?
  • CCM-101 Exam Question 3

    A merchant checked the "Show Orderable Products Only" preference in Business Manager. What impact does this have on the Storefront from a user perspective?
  • CCM-101 Exam Question 4

    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, what will be written to the log?
  • CCM-101 Exam Question 5

    Server.get('Show', consentTracking.consent, cache.applyDefaultCache, function (req,res,next){ Var Site = require('dw/system/Syte"); Var pageMetaHelpter = require('*/cartridge/scripts/helpers/pageMetaHelper'); pageMetaHelpter.setPageMetaTags(req.pageMetaData, Site.current); res.render('/home/homePage'); Missing code here
    }, pageMetadata.computedPageMetadata);
    The controller endpoint code snippet above does not work.
    Which line of code should the developer use to replace line 6 and correct the problem?