2023 Latest CCD-102 Exam Dumps Recently Updated 207 Questions [Q36-Q52]

Share

2023 Latest CCD-102 Exam Dumps Recently Updated 207 Questions

Salesforce CCD-102 Real 2023 Braindumps Mock Exam Dumps

NEW QUESTION # 36
A developer has a specification to integrate with a REST API for retrieving traffic conditions. The service expects parameters to be form encoded.
Which service type should the developer register?

  • A. HTML Form
  • B. POST Form
  • C. SOAP Form
  • D. HTTP Form

Answer: A


NEW QUESTION # 37
The Client is planning to switch to a new Payment Service Provider (PSP). They have approached an Architect to understand the time and effort to Integrate the new PSP The PSP offers a LINK cartridge compatible with SiteGenesis Pipelines, but the Client's website is build on Controllers.
Which two options should the Architect take into consideration before starting analysis? Choose 2 answers

  • A. Look for a different PSP that supports controllers and would not require conversion efforts.
  • B. Produce a proof of concept converting the most essential pipelines into controllers and integrate the cartridge.
  • C. Estimate the effort and risk to convert the LINK cartridge from pipelines to controllers.
  • D. Reach out to the PSP development team and ask if a new cartridge version that supports controllers is under development

Answer: B,C


NEW QUESTION # 38
A company manages its regional operations as separate businesses. The regional sites (Site A and Site B) operate with:
* Separate realms
* Deferent code bates
* Different category navigation menus
* Frequent updates on category structure
The requirement from the business is to provide hreflang link tags on category pages pointing to the same category on the other regional site. Example MTML for one of these links as displayed on Site A is:

Which solution should the Architect choose while keeping performance in mind?

  • A. Create additional locales in al realms create a new custom attribute on the category that is localized. Populate the attribute with the other site URLs and use it to display the hreflang tag.
  • B. Create a new custom object type Populate the hreflang mapping for each category and locale in this custom object. Use the custom object to display the hreflang link tag.
  • C. Create a custom Business Manager module. Ask the business to maintain the hreflang link tags for each regional site in this Business Manager module.
  • D. Create a new custom attribute on the Category. Populate the attribute with the other entire site URLs corresponding to locales In JSON Format. Use the attribute to display the hreflang link tag.

Answer: D


NEW QUESTION # 39
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. Create an Attnbute Group with the desired attributes in it.
  • B. Set the attributes to site-specific replicable.
  • C. Change the data type of the attributes.

Answer: A


NEW QUESTION # 40
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 C
  • C. Option A

Answer: B


NEW QUESTION # 41
Universal Containers needs to have Apple Pay disabled for the country of Spain. Which Business Manager module should the Developer use to meet this requirement?

  • A. Merchant Tools > Ordering > Payment Processors
  • B. Merchant Tools > Ordering > Payment Methods
  • C. Merchant Tools > Site Preferences > Payment Types
  • D. Merchant Tools > Site Preferences > Apple Pay

Answer: D


NEW QUESTION # 42
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?

  • A. Set the root log level to debug AND check the box for info under Log Files.
  • B. Set the logging global preference to true AND set the root log level to debug.
  • C. Set the logging global preference to true AND check the box for Info under Log Files

Answer: C


NEW QUESTION # 43
The development team is building a complex LINK cartridge for a hosted checkout solution. The provider s database is used as a single source of truth, but the information in the Basket on B2C Commerce side needs to be synchronized. This is implemented asynchronously the back end when the customers interact will the hosted checkout page and change their shipping/biding details.
As an Architect you have to advise the development team with how to implement the logging to ensure that there will be a mechanism available to allow troubleshooting in the case something goes wrong on production.
Which solution should the Architect suggest?

  • A. Get logger for cartridge specific category. Report debug level message for the back end asynchronous communication between both systems. Report all errors at error level message.
  • B. Report info level message for the back-end asynchronous communication between both systems Report all errors at error level message.
  • C. Get logger for cartridge-specific category. Report Info level message for the back-end asynchronous communication between both systems. Report all errors at error level message.
  • D. Report debug level message for the back-end asynchronous communication between both systems. Report al errors at error-level message.

Answer: C


NEW QUESTION # 44
The client provided these business requirements:
* The B2C Commerce platform will integrate with the Client s Order Management System (OMS).
* The OMS supports Integration using REST services.
* The OMS is hosted on the Clients infrastructure.
Whet configurations are needed for this integration with the OMS?

  • A. A service profile configuration, a WAF configuration, and a service credential configuration.
  • B. A service configuration, a service profile configuration, and a user credential configuration.
  • C. A service configuration, a service profile configuration, and a service credential configuration.
  • D. A service configuration, a hostname alias configuration, and a user credential configuration.

Answer: C


NEW QUESTION # 45
A developer has a B2C site and a merchant requirement to add a new locale to it.
What are the steps to enable the locale in the Storefront?

  • A. Add an alias for the new locale and then create and configure the locale itself under Global Preferences section.
  • B. Create and configure the locale under Global Preferences section and activate it in Site Preferences.
  • C. Create, configure, and activate the locale under Global Preferences section.

Answer: B


NEW QUESTION # 46
When inspecting the weekly service status report for a critical internally hosted web service used in the application, a developer notices that there are too many instances of unavailability.
Which two solutions can reduce the unavailability of the service?
Choose 2 answers.

  • A. Change the code that sets the throwOnError attribute of the service to be true.
  • B. Update the service to have a faster response time.
  • C. Modify the code that makes the request to the external service to be wrapped in a try/catch block.
  • D. Increase the web service time out

Answer: B,D

Explanation:


NEW QUESTION # 47
There are three logging categories: category1, category1.eu, and category1.us.
In Business Manager, category1 is enabled for WARN level and no other categories are configured. All custom log targets are enabled.
The code segment below executes.

What is the result'

  • A. Logs will be written to the log file with a prefix custom-loggerFile.
  • B. Logs will be written to the log file with a prefix loggerFile.
  • C. Logs will be written to the log file with a prefix customwarn.
  • D. Logs will not be written.

Answer: A


NEW QUESTION # 48
A developer wants to add a link to the My Account Page.
What is the correct code to accomplish this?

  • A. <a href="${URLUtils ('Account-Show')}>${ResourceMgr.getPropierties('myaccount','account',null)}</a>
  • B. <a href="${URLUtils.get('Account-Show')}>${Resource.msg('myaccount','account',request.locale())}</a>
  • C. <a href="${url.get('Account-Show')}>${Resource.message('myaccount')}</a>
  • D. <a href="${URLUtils.url('Account-Show')}>${Resource.msg('myaccount','account',null)}</a>

Answer: D


NEW QUESTION # 49
A merchant uploads an image using the Content Image Upload module of Business Manager.
Which three modules can the merchant or developer use to display the image on the Storefront?
Choose 3 answers

  • A. Payment types
  • B. Content slots
  • C. Content assets
  • D. ISML templates
  • E. Storefront catalogs

Answer: B,C,E


NEW QUESTION # 50
Which technical reports datapoint measures the performance of a controller's script execution if network factors and Web Adaptor processing is ignored?

  • A. Call count
  • B. Processing time
  • C. Cache hit ratio
  • D. Response time

Answer: B


NEW QUESTION # 51
A Digital Developer noticed that cartridges in their workspace are NOT executing. The Developer confirms that the cartridges are uploaded to the B2C Commerce server connection's target version directory.
Which action potentially solves this problem?

  • A. Set the active code version to use the latest compatibility mode.
  • B. Remove invalid characters from cartridge file and folder names.
  • C. Set the server connection's target version directory to the active code version.
  • D. Remove invalid characters from the code version's name.

Answer: C


NEW QUESTION # 52
......


Salesforce CCD-102: B2C Commerce Developer with SFRA is an essential certification for any IT professionals who are interested in developing and implementing e-commerce solutions using the Salesforce platform. CCD-102 exam is designed for those who already have experience in the field and are familiar with the latest trends and technologies in e-commerce development.


The Salesforce CCD-102 exam covers a range of topics, including the basics of B2C Commerce Cloud, site design and development, customization, and integration with other Salesforce products. It also assesses the candidate's ability to develop and implement solutions using SFRA (Storefront Reference Architecture), which is a framework that streamlines the development of e-commerce sites. Passing CCD-102 exam demonstrates the candidate's ability to develop complex e-commerce solutions using the latest technologies and best practices in the industry.

 

Verified CCD-102 Exam Dumps Q&As - Provide CCD-102 with Correct Answers: https://killexams.practicevce.com/Salesforce/CCD-102-practice-exam-dumps.html