Try Before You Buy

Download a free sample of any of our exam questions and answers

  • 24/7 customer support, Secure shopping site
  • Free One year updates to match real exam scenarios
  • If you failed your exam after buying our products we will refund the full amount back to you.

CCD-102 Dumps PDF 2023 Strategy Your Preparation Efficiently [Q99-Q116]

Share

CCD-102 Dumps PDF 2023 Strategy Your Preparation Efficiently

Latest Verified & Correct Salesforce CCD-102 Questions


Understanding functional and technical aspects of B2C Commerce Developer with SFRA

The following will be asked from you in the SALESFORCE CCD-102 exam dumps:

  • Select and set up cutting edge or local endorsements to meet business prerequisites

A contender for this test will probably require help with:

  • Advanced statement layout subjects
  • Block with rebate plan
  • Nested groups
  • Advanced gathering
  • Composite rundown variable

A contender for this test isn't relied upon to know how or do the accompanying:

  • Custom Template Content
  • Administer Force.com, Visualforce pages, APEX classes, or JavaScript
  • Billing

 

NEW QUESTION 99
A client sells its product in single-brand stores as well as in multi-brand stores. When shown in the store locator list, the client wants the single-brand stores to have a particular background color to highlight them.
Which Business Manager action should be completed to allow the developer to apply different styling to the single-brand stores?

  • A. Add a Boolean custom attribute to the Store system object
  • B. Configure the existing Store custom object type definition
  • C. Adjust the relevant Site Preference in the Stores group
  • D. Create a new SingleBrandStore custom object configuration.

Answer: D

 

NEW QUESTION 100
A Digital Developer is working on a project to convert a pipeline to a JavaScript controller. UX Studio has a functioning pipeline debugger configured for the site. Assume the Developer will add a breakpoint to the controller when it is written.
What must be done in order to use the debugger with the new controller when it is written?

  • A. Modify the debugger configuration and use the existing pipeline debugger.
  • B. Create and use a new script debug configuration.
  • C. Create and use a new controller debug configuration.
  • D. Use the existing pipeline debugger.

Answer: B

 

NEW QUESTION 101
A developer set up a new site with Taxation: Net. However, the business requirements changed and the site now needs to be Taxation:Gross. The Business Manager interface does not give this option.
Which sequence of steps is necessary to change the site to gross taxation?

  • A. Unlock the site preferences and then change the Taxation setting to Gross
  • B. Create a new site with Taxation set to Gross, then delete the old site.
  • C. Change the global setting,"Enable Taxation Methods" to true, then change the Taxation setting to Gross
  • D. Make sure that the developer has "Administrator" Access, then change the Taxation setting to Gross

Answer: B

 

NEW QUESTION 102
The storefront integrates with a REST based Address verification service (AVS) that uses token based security. The sequence of calls in the API documentation for this AVS looks like the following
1. Client authentication call, which contains the merchantId and secret in a GET request and returns a token in the response.
2. Address verification call, which contains the token and the address to verify in a POST request.
Once the token is obtained, it is valid for hours and it is not needed to request a new one for subsequent address verification calls, the AVS charges for every request made no matter if it is client authentication call or address verification call.
Which three strategies could be applied to allow for efficient use of the service without compromising security? Choose 3 answers

  • A. Use a job to store and update the token in a custom object that is used from the storefront code
  • B. Apply page caching to the client authentication controller that is used with AJAX.
  • C. Use HTTPService caching for the client authentication call.
  • D. Obtain the token from a custom cache before making the client authentication call.
  • E. Obtain the token from local storage of the browser and update it once It expires.

Answer: B,C,D

 

NEW QUESTION 103
During a technical review, the Client raises a need to display product pricing on the Product Detail Page (PDP) with discounted values per promotion. The Client notes customers complained of bad user experiences in the past when they would add a product to the basket from the cached PDP and then see a higher price when they started checkout as the promotion had expired.
What should the Architect suggest be implemented for this given that performance should be minimally impact?

  • A. Modify the page to vary the cache by price and promotion.
  • B. Remove caching of the product page during the promotion.
  • C. Adjust the PDP to have a low caching period during the promotion.
  • D. Create a separate template or view based on the promotion.

Answer: A

 

NEW QUESTION 104
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.renderTemplate( "helloworld.isml", { "myProduct": "product" });
  • B. ISML.renderTemplate{ "helloworld.isml", { "product": myPrcduct });
  • C. ISML.renderTemplate{ "helloworld.isml", { myProduct: product });
  • D. ISML.renderTemplate( "helloworld.isml", { product: myProduct });

Answer: C

 

NEW QUESTION 105
A client has two B2C Commerce sites in the same instance: one for the U.S market, the other for the European market. The products they make are sold with different safety certificates based-on the world location.
For example, they sell a smartphone with certificate A in the U.S and certificate B in Europe, a hairdryer with certificate C in the U.S and certificate D in Europe, and more.
How should a developer allow the merchant to display the appropriate certification logo in the produce to details page, depending on the customer's location?

  • A. Add a Site-specific custom attribute to the Product system object type.
  • B. Add a Localizable custom attribute to the Certificate system object type.
  • C. Add a Localizable custom preference to the SitePreference system object type.
  • D. Ad and Image custom preference to the Sitepreference system object type

Answer: A

Explanation:

 

NEW QUESTION 106
A Digital Developer has Identified that the code segment below is causing performance problems.

What should the Developer do to improve the code?

  • A. Break the process into separate loops.
  • B. Avoid using an Iterator and use a Collection instead.
  • C. Use a system attribute instead of the isOnSaleFlag custom attribute.
  • D. Avoid post-processing and use the isOnSaleFlag attribute as a search refinement.

Answer: D

 

NEW QUESTION 107
Which line of code creates a content slot that can be included on homepage.isml to display on the home page?

  • A. <isslot id="my_banner " description="for home page" type="global" context="content" context-object="${pdict.ContentSearchResult.content}"/>
  • B. <isslot id="my_banner " description="for home page" context="global" context-object="${pdict.CurrentHomePage}"/>
  • C. <isslot id="my_banner " description="for home page" type="global" context="homepage"/>
  • D. <isslot id="my_banner " description="for home page" context="global">

Answer: D

 

NEW QUESTION 108
A developer is configuring Payment Methods on a storefront. Which of the following considerations should be kept in rmnd while configuring payment methods,

  • A. You can't delete a default payment method. You can only disable it.
  • B. You can't drag and drop the column headers to change the sort order.
  • C. You can add only up to 5 payment methods

Answer: A

 

NEW QUESTION 109
Which three techniques improve client-side performance in production while following documented best practices? Choose 3 answers

  • A. Place CSS outside of templates.
  • B. Combine several images into a single image.
  • C. Use one style sheet for each ISML decorator template.
  • D. Compress CSS.
  • E. Use inline Javascript.

Answer: B,D,E

 

NEW QUESTION 110
What happens if the log file size limit is reached in custom logging?

  • A. Logging is suspended for two hours.
  • B. The log file is deleted and recreated from scratch.
  • C. Logging is suspended for the day.
  • D. The log file rolls over and the last used log is overwritten.

Answer: C

 

NEW QUESTION 111
Given the requirement to add caching to an existing page while adhering to SFRA best practices, which code snippet should be used?
A)

B)

C)

  • A. Option B
  • B. Option A
  • C. Option C

Answer: C

 

NEW QUESTION 112
A Digital Developer needs to check for product inventory in a specific inventory list using the Open Commerce API.
An example request URL is:

Which rescurce_id value enables the appropriate resource?

  • A. /products/*
  • B. /inventory_list_search
  • C. /inventory-lists/*
  • D. /inventory_lists/**

Answer: D

 

NEW QUESTION 113
Which three operations should be done in a controller?
Choose 3 answers

  • A. Use middleware functions when applicable
  • B. Use the Script API to generate data for the view.
  • C. Create a plain JavaScript object representing a system object
  • D. Generate the response as JSON or HTML
  • E. Use the model needed for the view.

Answer: A,D,E

 

NEW QUESTION 114
Given the requirements:
* To integrate with an external web service using HTTP requests
* To create a service for this purpose with the Service framework using the LocalServiceRegistry class.
* To test the service before the external service provider makes the API available Which solution allows the developer to satisfy the requirements?

  • A. Create a service and implement the mockFill callback and set the service mode to mock.
  • B. Create two services, one mock and the real one, and a Sitepreference that enable the mock or the real one
  • C. Create a service and a Sitepreference that induce the service to respond witch a mock response using a conditional.
  • D. Create a service and implement the mockfull callback and a sitepreference to enable or disable the mock response.

Answer: A

 

NEW QUESTION 115
Given a template rendered by a controller with caching and a remote include without caching, which situation applies?

  • A. The page is cached only for returning customers because of the remote include.
  • B. The page is not cached because the remote include introduces an uncached portion.
  • C. Both the remote include portion and the rest of the page are cached.
  • D. The remote include portion is not cached, but the rest of the page is cached.

Answer: D

 

NEW QUESTION 116
......


Understanding functional and technical aspects of B2C Commerce Developer with SFRA

The following will be asked from you in the SALESFORCE CCD-102 exam dumps:

  • Given a situation, set up a statement layout to meet business necessities

 

CCD-102 PDF Dumps Are Helpful To produce Your Dreams Correct QA's: https://pass4sure.examstorrent.com/CCD-102-exam-dumps-torrent.html