최신Salesforce Certified B2C Commerce Cloud Developer - Comm-Dev-101무료샘플문제
A merchant asks a developer to create a Cache Partition for the home page, so that when the home page is edited, only the home page is cleaned.
Given the above requirement, where should the developer create that partition in Business Manager?
Given the following snippet:
Server.append( 'Show' , function (req, res, next) )
According to SFRA, which two options shows a correct way to complete the code above in order to provide data to the response using a controller?
A)
res.viewData = {
data: myDataObject
};
res.render('/content/myPage');
next();
});
B)
res.setViewData ({
data: myDataObject
});
res.render('/content/myPage');
next();
});
C)
res.render('/content/myPage',{
data: myDataObject
});
next();
});
D)
res.render('/content/myPage');
next();
}).append{(
Data:myDataObject
});
A developer cannot create a custom object in Business Manager because the attributes do not show. The developer can view the object but not the attributes.
Which action should the developer take to resolve the problem?
A merchant has reported that customers are seeing low stock items at the top of their search results, giving them a subpar customer experience and impacting conversion.
How might this issue be resolved to ensure a better customer journey?
Which two methods are efficient and scalable? (Choose two.)
When exporting a price book from an external system, which file format or formats should a developer use so it can be imported into a B2C Commerce site?
A developer must configure permissions for an Open Commerce API resource on a sandbox instance that currently does not have any permissions configured.
Which two configuration properties are required to enable Access to the resource?
Choose 2 answers
A developer is using the Script Debugger to troubleshoot an issue. They observe that the debugger is not able to resolve a specific breakpoint on one of the scripts. What is a possible reason for this issue?
Given the requirements:
To show the washing Instructions for a clothing product on a dedicated section the detail page Washing instructions come from the product Information manager (PIM) To have this attribute available to localize in the Storefront Which action must these requirements?
A developer needs to render a Page Designer page in JSON format. What is the correct syntax?
A developer configures the dw.json file and needs to fill in the necessary parameters to complete the task.
Which three parameters are required when using npm scripts?
Choose 3 answers
A client has a requirement to allow users on the Storefront to filter by a newly created attribute.
After creating the search refinement, what else is necessary to achieve this?
A developer is asked to create a new service instance that will call a remote web service.
Which method should the developer use to create the service instance?
A)

B)

C)

Which of these situations is an appropriate use of the B2C Commerce OCAPIs?
What happens if the log file size limit is reached in custom logging?