MultipleChoice
Which three object types can a developer import using the Merchant Tools > Content > Import & Export module in Business Manager? (Choose three.)
OptionsMultipleChoice
Given the following ISML example, how should a developer reference the product object in the current
iteration of the basket?
<isloop tems =''${pdict.Basket.products}'' var=''product'' status= ''loopstatus''>
...
</isloop>
OptionsMultipleChoice
To ensure SFRA best practices and protect against request forgery, the developer introduced CSRF token
generation in the customer address form:
<form ... action = ''submit''>
<input name =''${dw.web.CSRFProtection.getTokenName()}''
value = ''${dw.web.CSRFProtection.generateToken()''>
...
<the rest of the Form fields>
...
</form>
To implement CSRF protection when the form is submitted, the developer needs to introduce the CSRF
validation using one or both of these methods as applicable:
* validateRequest
* validateAjaxRequest
Where in the code does the developer need to add this CSRF validation check?
OptionsMultipleChoice
Consider the following information:
* A merchant has this three-tier category structure setup in the Storefront catalog:
New Arrivals > Women > Clothing
* The category named Clothing has all the clothing items for Women and is merchandised.
* A Search Refinement named Newness is correctly configured for the Clothing category.
When a merchandiser views the Clothing category, the Search Refinement appears and Works as
expected. However, the merchandiser does not see the Search Refinement when searching for Clothing via
the Storefront search.
What is the Reason?
OptionsMultipleChoice
Below is a form definition snippet from the newsletter.xml file:
<?xml versin=''1.0''?>
<form xmlns=http://www.demandware.com/xml/form/2008-04-15>
<field formid=''email'' lavel=''Email'' type=''String'' mandatory=''True'' max-length=''50'' />
</form>
Which line of code creates a JSON object to contain the form data?
Options