Question 1

Which three object types can a developer import using the Merchant Tools > Content > Import & Export module in Business Manager? (Choose three.)
  • Question 2

    A Digital Developer is working on a project to convert a pipeline to a JavaScript controller. UX Studio has a functioning pipeline debugger configured for the site. Assume the Developer will add a breakpoint to the controller when it is written.
    What must be done in order to use the debugger with the new controller when it is written?
  • Question 3

    Universal Containers wants to give customers the ability to refine product search results by a product custom attribute, weightCapacity.
    Which series of steps should a Digital Developer take to show this refinement on the storefront?
  • Question 4

    A Digital Developer wants pass control to an ISML template from a JavaScript Controller and load product on the pipeline dictionary with the name myProduct.
    Which code sample will achieve this?
  • Question 5

    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?