Salesforce-Certified-B2C-Commerce-Developer Dumps Salesforce-Certified-B2C-Commerce-Developer Braindumps Salesforce-Certified-B2C-Commerce-Developer Real Questions Salesforce-Certified-B2C-Commerce-Developer Practice Test Salesforce-Certified-B2C-Commerce-Developer Actual Questions


Salesforce


Salesforce-Certified-B2C-Commerce-Developer


Certified B2C Commerce Developer


https://killexams.com/pass4sure/exam-detail/Salesforce-Certified-B2C-Commerce-Developer


Question: 57


A client has a requirement to render different content on the homepage based on if the customer is logged in or guest user.


What should a developer implement to achieve this requirement?

  1. Write specific custom code in the Content Asset for a customer that is a registered, versus unregistered, user.

  2. Set the Content Slot configuration so it is based on the system customer group registered, versus unregistered.

  3. Set the Content Asset configuration for a customer that is a registered, versus unregistered, user.

  4. Add specific custom messages in Page Designer for a customer that is a registered, versus unregistered, user.


Answer: B


Question: 58


A Digital Developer needs to add logging to the following code:



Which statement logs the HTTP status code to a debug-level custom log file?

  1. logger.getLogger(‘profile’).debug("Error retrieving profile email, Status Code: ", http.statusCode);

  2. logger.debug("Error retrieving profile email, Status Code: {0} was returned.", http.statusCode);

  3. Logger.getLogger().debug("Error retrieving profile email, Status Code: {0} was returned.", http.statusCode);

  4. Logger.getLogger(‘profile’).debug("Error retrieving profile email, Status Code: {0} was returned.", http.statusCode);


Answer: B

Question: 59


A developer has a sandbox with code to log a message during execution, and the following code:


After the code executes, the developer does not see any log file with the message in the WebDAV folder. What could the developer do to correct this issue?

  1. Set the root log level to debug AND check the box for info under Log Files.

  2. Set the logging global preference to true AND set the root log level to debug.

  3. Set the logging global preference to true AND check the box for Info under Log Files


Answer: C


Question: 60


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’)}

  1. Your parcel weighs 10 stones.

  2. Your parcel weighs 10 pounds.

  3. Your parcel weighs 10 undefined.

  4. Your parcel weighs 10 kilos


Answer: A


Question: 61


Assume the code below is executing:


Active Log category is “root” with log level of “info.”


Given this information, what is the beginning of the filename in which the log will be written?

  1. xyz

  2. custominfo-blade

  3. custom-export

  4. custom-xyz


Answer: D


Question: 62


The developer has been given the following business requirement:


The shipping method, Free Standard Ground Shipping’ has an exclusion for products *lth 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?

  1. Extend the code in cartridge/models/shipping/shippingMethod.js using module, super Module and add an exception for the specified brand.

  2. Extend the CheckoutShippingservices controller using module.superModule and add an exception for the specified brand

  3. Create an allow list for the existing shipping method by adding a product exclusion for ‘brand equals XyzTV" to the exclusion list for "Free Standard Ground Shipping."


Answer: C


Question: 63


A developer needs to check for product inventory in all inventory lists using the Open Commerce API. An example request URL is:


Which properly should the developer check in the OCAPI settings to confirm the appropriate resource is enabled?

  1. Client_id

  2. Ecom-inventory

  3. Inventory_list


Answer: B

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?

  1. In the controller function that displays the form

  2. In the middleware chain of the controller post route

  3. In the controller function that handles the submitted form

  4. In the model function that persists the form data


Answer: B


Question: 65


A Digital Developer must give users the ability to choose an occasion (holiday, birthday, anniversary, etc.) for which gifts are currently being selected. The data needs to be persistent throughout the current shopping experience.


Which data store variable is appropriate, assuming there is no need to store the selection in any system or custom objects?

  1. Request scope variable

  2. Page scope variable

  3. Session scope variable

  4. Content slot variable


Answer: C


Question: 66


A developer wants to configure multiple products that should only be sold as a group. It should not be possible for

buyers to buy these products individually.


How should the developer configure the products?

  1. Bundle

  2. Set

  3. Variation Group


Answer: A


Question: 67


Business Manager has the configuration: Active Log category is "root"

Log level of WARN


The code below is executing:


var log = Logger.getLogger("products");


Using this information, which two logs will be written? Choose 2 answers

  1. log.warn("This is a warn message");

  2. log.error("This is an error message");

  3. log.info("This is an info message");

  4. log.debugfThis is a debug message");


Answer: A,C


Question: 68

A merchant has a content slot on a page that currently displays products based on the top Sellers for the current week. They wish to change this functionality and, instead, 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 this change? Choose 2 answers

  1. Delete the existing content slot and create a new one.

  2. Change the rendering template in the slot configuration

  3. Change the default setting in the slot configuration

  4. Change the content type for the slot configuration


Answer: B,D


Question: 69


Which two methods are efficient and scalable? (Choose two.)

  1. ProductMgr.queryAllSiteProducts()

  2. ProductSearchHit.getRepresentedProducts()

  3. ProductSearchModel.getProductSearchHits()

  4. Category.getProducts()


Answer: C,D


Question: 70


A controller route in the SFRA base looks as follows:



In order to extend this route using prepared ( ), what should the developer consider?

  1. Specify any middleware functions needed for the new functionality.

  2. Specify any middleware functions needed for the new functionality using only those called by the base route.

  3. Remove next ( ); on the new route so only the route’s middleware functions execute.


Answer: B