75only - Ends in 0d 00h 00m 00s - Coupon code = 75only
Pass the Salesforce Developers Comm-Dev-101 Questions and answers with Dumpstech
A merchant wants customers to be able to order gift vouchers via their site. Since they can issue an unlimited number of these digital vouchers, this item should be available to sell at all times.
How can a developer use Business Manager to ensure that the gift vouchers are always available?
The developer has been given the following business requirement:
The shipping method, " Free Standard Ground Shipping " has an exclusion for products with ' category equals or is child of electronics-televisions. '
The marketing department has scheduled a sale offering a " Free Standard Ground Shipping " method for brand XyzTv televisions for the next 3 months.
What method accomplishes this while following best practices?
What is the correct format to use for embedding a link to a content page?
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?
Multiple shoppers report slow performance on the Product Details Page.
Which tool can a developer use to view average response times for the Product-Detail controller route?
A merchant uploads an image using the Content Image Upload module of Business Manager.
Which module can the merchant use to display the image on the Storefront?
A developer is tasked with creating a new payment method in Business Manager. What is the first step the developer should take?
A developer has the following files in template/resources:
• account.properties - > weight.unit=kilos
• account_en.properties - > weight.unit=stones
• account_en_US.properties - > 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 Storefront with the English for Canada (en_CA) locale?
Your parcel weighs 10 ${Resource.msg( ' weight.unit ' , ' account ' ,null)}.
Given the following snippet:
server.append( ' Show ' ,function(req,res,next) {
According to SFRA, which option can a Developer use to complete the code above and provide data to the response using a controller?
A custom cartridge that seemed to be performing well in a sandbox has been installed in production. The production instance is showing increased page load times that seem to be related to the new custom code. What can a developer do to quickly track down the potential problem?