Question 6

Which three operations should be done in a controller?
Choose 3 answers
  • Question 7

    During the testing of the login form, QA finds out that the first time the user can log in, but every other login attempt from another computer leads to the homepage and the basket being emptied. Developers tried to debug the issue, but when they add a breakpoint to the login action, it is not hit by the debugger.
    What should the Architect recommend developers to check?
  • Question 8

    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?
  • Question 9

    A developer wants to create in Business Manager extension with the cartridge named plugin_vm_extension.
    Which two steps should the developer take for the extension option to show up in Business Manager?Choose 2 answers:
  • Question 10

    Reference the following code snippets that allow a form to function correctly.

    Which code should a developer insert at the EXPRESSION placeholder m the ISML template snippet above to have the form work as expected?