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?
A.
ISML.renderTemlpate ( "helloworld.isml", { "myProduct": "product" });
B.
ISML.renderTemlpate ( "helloworld.isml", { "product": myProduct });
C.
ISML.renderTemlpate ( "helloworld.isml", { product: myProduct });
D.
ISML.renderTemlpate ( "helloworld.isml", { myProduct: product });
ISML.renderTemlpate ( "helloworld.isml", { "myProduct": "product" });
A Digital Developer is inspecting the weekly service status report for a critical internally-hosted web service
used in the application and notices that there are too many instances of unavailability.
Which two solutions are possible options to reduce the unavailability of the service? (Choose two.)
A.
Modify the code that makes the request to the external service to be wrapped in a try / catch block.
B.
Change the code that makes the request to set the throwOnError attribute, of the service, to be true
C.
Increase the web service time out.
D.
Update the external service to have a faster response time.
Modify the code that makes the request to the external service to be wrapped in a try / catch block.
Update the external service to have a faster response time.
A 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?
A.
Create a copy of existing address.xml file in the default folder. Rename that file to
adres_US.xml
B.
Create a new sub-folder in the forms folder. Name it US. Copy existing address.xml file in
the new folder
C.
Create a copy of existing address.xml file in the default folder. Rename that file to
address_en_US.xml
D.
Create a new sub-folder in the forms folder. Name it en_US. Copy existing address.xml file
in the new folder.
Create a new sub-folder in the forms folder. Name it en_US. Copy existing address.xml file
in the new folder.
A Digital Developer is implementing an Open Commerce API call to add products to a basket. Given the following resource configuration:
Which modification allows the requests to successfully execute?
A.
Change the "resource_id" value to: "/baskets/*/items".
B.
Change the "write_attributes" value to: "(+items)".
C.
Change the "read_attributes" value to: "(items)".
D.
Change the "methods" value to: ["get", "post"].
Change the "resource_id" value to: "/baskets/*/items".
A Digital Developer has identified that the code segment below is causing performance problems.
What should the Developer do to improve the code?
A.
Use a system attribute instead of the isOnSaleFlag custom attribute.
B.
Avoid post-processing and use the isOnSaleFlag attribute as a search refinement.
C.
Breaks the process into separate loops.
D.
Avoid using an Iterator and use a Collection instead.
Breaks the process into separate loops.
A developer has the following files in template/resources:
account.proierties
weight.unit=kilos
account_en.propierties
weight.unit=stones
account_en_US.propierties
weight.unit= pounds
Using the default locale configuration, what is the current outcome of the page that renders the
account.isml template snippet below when visiting the Sofrefront with the English for Canada(en_CA) locale=
Your parcel weighs 10 ${Resource.msg(‘weight.unit’,’account’)}
A.
Your parcel weighs 10 stones.
B.
Your parcel weighs 10 pounds
C.
Your parcel weighs 10 undefined.
D.
Your parcel weighs 10 kilos
Your parcel weighs 10 stones.
A Digital Developer adds the following line of code to a script
A.
Ensure that the debug log level is enabled to write to file in the Custom Log Settings Business Manager module.
B.
Archive old log files to make room in the log directory.
C.
Ensure that the “login” category is added to the Custom Log Filters in the Log Settings Business
Manager module.
D.
Ensure that the debug log level has been added to the custom log level types in the Global Preferences business manager module.
Archive old log files to make room in the log directory.
Ensure that the debug log level has been added to the custom log level types in the Global Preferences business manager module.
Given the code snippet aboce, what should be added after this code so it can be used for page
component display?
A.
Base.render = render;
B.
Module.exports.render = render;
C.
Module.exports = render;
D.
Module.exports = server.exports();
Module.exports = server.exports();
A 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 cartforms. 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.
A.
Option A
B.
Option B
C.
Option C
D.
Option D
Option C
A developer needs to show only car accessories when shoppers use the search term car accessories and exclude technology accessories and household accessories.Given the above requirement, what is the recommended approach using the Search Dictionaries
Dashboard?
A.
Create a Synonym Dictionary entry: car accessories, household, technology.
Use search mode Exact Match
B.
Create a Common Phrase Dictionary entry: car accessories, NOT household, NOT technology.
Use search mode Exact Match.
C.
Create a Synonym Dictionary entry: car accessories, household, technology.
Use search mode First Word.
D.
Create a Common Phrase Dictionary entry: car accessories.
Use search mode Exact Match.
Create a Common Phrase Dictionary entry: car accessories.
Use search mode Exact Match.
Page 2 out of 21 Pages |
Previous |