B2C-Commerce-Developer 無料問題集「Salesforce Certified B2C Commerce Developer」
A merchant has a requirement to sell a combination of four existing products with a unique product ID.
This collection will be known as 'Our Top Combo', and isbase don the merchant's trading information that shows this combination to be in high demand.
What does the developer need to do next to fulfill this requirement?
This collection will be known as 'Our Top Combo', and isbase don the merchant's trading information that shows this combination to be in high demand.
What does the developer need to do next to fulfill this requirement?
正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
A merchant has a content slot on a page that currently displays products based on thetop sellers for the current week. The merchant wants to change this functionality. They want to have the slot render a specific content asset so that the content experience is more personalized to the visitors.
Which two actions are necessary to make thischange?
Which two actions are necessary to make thischange?
正解:C
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
In Log Center, a developer notes anumber of Cross Site Request Forgery (CSRF) log entries. The developer knows that this happens when a CSRF token is either not found or is invalid, and is working to remedy the situation as soon as possible.
Which two courses of action might solve the problem?
Choose 2 answers
Which two courses of action might solve the problem?
Choose 2 answers
正解:C、D
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
A developer needs to display a products list of their "Women Dresses" category in a new web application, independent of their main B2C Commerce site. This custom listing page needs to be styled differently from the existing one, as per marketing requirements.
Which B2C Commerce tool should the developer use to collect the necessary information?
Which B2C Commerce tool should the developer use to collect the necessary information?
正解:D
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
A developer is writing a server side script that needs to maintain state across calls. The persistent information needed includes these items.
* The current customer
* Whether or not the customer is authenticated
* The privacy attributes (such as tracking consent or cookie policy)
Which technique should the developer use to maintain state in an efficient and scalable manner that follows best practice?
* The current customer
* Whether or not the customer is authenticated
* The privacy attributes (such as tracking consent or cookie policy)
Which technique should the developer use to maintain state in an efficient and scalable manner that follows best practice?
正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
Given the requirements:
* To show the washing instructions for a clothing product on a dedicated section the detail page
* Washing instructionscome from the product information manager(PIM)
* To have this attribute available to localize in the Storefront.
Which action meets these requirements?
* To show the washing instructions for a clothing product on a dedicated section the detail page
* Washing instructionscome from the product information manager(PIM)
* To have this attribute available to localize in the Storefront.
Which action meets these requirements?
正解:D
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
A Newsletter controller contains the following route:
Server.post('Subscribe', function (req,res,next){
var newsletterForm = server.forms.getForm('newsletter');var CustomObjectMgr = require('dw/object/CustomObjectMgr'); if(newsletterForm.valid){ try{ var CustomObject = CustomObjectMgr.createCustomObejct('NewsletterSubscription', newsletterform.email.value); CustomObject.custom.firstName = newsletterForm.fname.value; CustomObject.custom.lastName = newsletterForm.lname.value;-
} catch(e){
//Catch error here
}
}
next();
});
Assuming the Custom Object metadata exists, why does this route fail to render the newsletter template when the subscription form is correctly submitted?
Server.post('Subscribe', function (req,res,next){
var newsletterForm = server.forms.getForm('newsletter');var CustomObjectMgr = require('dw/object/CustomObjectMgr'); if(newsletterForm.valid){ try{ var CustomObject = CustomObjectMgr.createCustomObejct('NewsletterSubscription', newsletterform.email.value); CustomObject.custom.firstName = newsletterForm.fname.value; CustomObject.custom.lastName = newsletterForm.lname.value;-
} catch(e){
//Catch error here
}
}
next();
});
Assuming the Custom Object metadata exists, why does this route fail to render the newsletter template when the subscription form is correctly submitted?
正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)