無料Salesforce CCD-102テスト練習問題試験問題集 [Q70-Q87]

Share

無料Salesforce CCD-102テスト練習問題試験問題集

試験準備には欠かさない!トップクラスのSalesforce CCD-102試験最新版アプリ学習ガイドで練習


Salesforce CCD-102 認定試験の出題範囲:

トピック出題範囲
トピック 1
  • Client-Side Validation Script
  • Reusing Code in Templates
  • B2C Commerce Script API
トピック 2
  • Storefront Reference Architecture Tools
  • Accessing Storefront Reference Architecture
トピック 3
  • Introduction to Page Designer
  • Custom & System Objects
  • ISML Tags and Expressions
トピック 4
  • Creating a JavaScript Controller
  • Salesforce B2C Commerce Overview
トピック 5
  • Creating Custom Components
  • Server-Side Validation Script
  • Configuring OCAPI Settings
トピック 6
  • Script & JavaScript Controller Debugging
  • Storefront Reference Architecture Overview

 

質問 # 70
Assume the code below is executing:

Business Manager has the configuration:
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?

  • A. custom-export
  • B. xyz
  • C. custom-xyz
  • D. custominfo-blade

正解:C


質問 # 71
A Digital Developer has been given a requirement to add fault tolerance to an existing web service integration that uses Service Framework. Administrators at Universal Containers need to be able to configure the timeout and rate limiting.
Which approach should the Developer use to implement the requirement?

  • A. Use the setTimeout method to execute fallback code if the request has NOT completed.
  • B. Implement a condition that checks to see if the response was empty and execute fallback code if true.
  • C. Implement a ServiceUnavailableException exception handler to execute fallback code.
  • D. Create a site preference to store timeout settings and implement an IOException handler to execute fallback code.

正解:C


質問 # 72
A third party survey provider offers both an API endpoint for individual survey data and an SFTP server endpoint that can accept batch survey dat a. The initial implementation of the integration includes
1. Marking the order as requiring a survey before order placement
2. On the order confirmation pace, the survey form is displayed for the customer to fill
3. The data is sent to the survey provider API, and the order it marked as not requiring a survey Later it was identified that this solution is not fit for purpose as the following issues and additional requirements were identified:
1. If the API call fails, the corresponding survey data is lost. The Business requires to avoid data loss.
2. Some customers skipped the form. The Business require sending a survey email to such customers.
3. The Order Management System (OMS) uses a non-standard XML parser it did not manage to parse orders with the survey, until the survey attribute was manually removed from the xml.
How should the Architect address the issues and requirements described above?

  • A. Create a custom object to store the survey data. Send to the API endpoint using a job. On success, remove the custom object. On failure, send the survey data with API from the next execution of the same job. Use the custom object to send emails for the cases when the survey was skipped.
  • B. Send the survey data to the API endpoint in real-time until the survey data is successfully captured. Instruct the OMS development team to update their XML parser, use the Order survey attribute to send emails for the cases when the survey was skipped.
  • C. Create a custom session attribute when the survey is required. Send to the API endpoint in real-time. On failure, capture the survey data in the session and reprocess, use me session attribute to send emails for the cases when survey was skipped.
  • D. Create a custom object when the survey is required Send to the API endpoint in real-time. On success, remove the object. On failure, capture the survey data in the custom object and later reprocess with a job. Use the custom object to send emails for the cases when survey was skipped.

正解:D


質問 # 73
Business Manager has the configuration:
* Active log category is "root"
* Log level of INFO
The code below execites:
Var log = Logger.getLogger("products","export");
Log.info ("This is important information");
Using this information, what is the beginning of the filename in which the log will be written?

  • A. custom-products
  • B. info-export
  • C. custom-export
  • D. products

正解:A


質問 # 74
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. Cache hit ratio
  • C. Response time
  • D. Processing time

正解:D


質問 # 75
The developer wants to be able to view DEBUG
The developer wants to be able to view DEBUG level messages for myLogCategory in the Request Log tool. Given the custom log configurations in the image above, what does the developer need to do to accomplish this?

  • A. Change the Log Level for myLogCategory to DEBUG and check the DEBUG box in the Log Files section.
  • B. Check the DEBUG box in the Log Files section.
  • C. Change the Log Level for myLogCategory to DEBUG.

正解:A


質問 # 76
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 meets these requirements?

  • A. Set the product system object type as localizable
  • B. Add a custom attribute for each locale
  • C. Add a resource file for every locale for which the attribute needs to be translated.
  • D. Set the custom attribute as localizable

正解:D


質問 # 77
A developer customized the Cart-Show controller route with a LINK cartridge that adds social media dat a. There is a new requirement to add a datalayer object to the Cart-Show controller route.
How should the developer achieve this to ensure that no code change will be needed if the client decides to remove the LINK cartridge?

  • A. Replace the Cart-Show controller route in client cartridge and add datalayer object to the viewData variable.
  • B. Replace the Cart-Show controller route in client cartridge and add datalayer object to the viewData variable. Ensure that the client cartridge is on the left of the U.HK cartridge m cartridge path.
  • C. Append Cart-Show controller route in the client cartridge and add datalayer object to the viewData variable.

正解:C


質問 # 78
Why Should a Digital Developer use ProductSearchModel.getProducts() instead Of Category.getOnlineProduccs () to access products?

  • A. It uses the search index.
  • B. It has fewer lines of code.
  • C. It is more readable code.
  • D. It reduces accesses to the application server.

正解:A


質問 # 79
A Digital Developer needs to add a new form to the shopping cart page to allow customers to enter their rewards pass ID. There is already an existing cart.js controller that handles processing of the other cart forms. In addition, a form field node is in the form XML and the necessary form input is present in the ISML template.
The code below is the submit button for the ISML markup.

What additional steps must occur before the Digital Developer can begin writing the processing code for this request?

  • A. * Add the attribute addtl-fonn-action^'addRewardPaas"1 to the ISML form
    * Add the key addRewardPass, with a processing function as a value, to the object passed to the Form.handleActionO method in the cart.3s controller
  • B. * Add an <action /> node to the form definition XML with the attribute formid=''addRewardFaas"
    * Add the key addRewardPass, with a processing function as a value, to the object passed to the Form.handleActionO method in the Cart .j* controller
  • C. * Add an action /> node to the form definition XML with the attribute formid="addRewardFa3s"
    * No change to cart.3a controller required
  • D. * Add a <submit /> node to the form definition XML with the attribute formid=''addRewardPas3"
    * Add the key addRewardPasa, with a processing function as a value, to the object passed to the Form.handleActionO method in the Cart.ja controller

正解:B


質問 # 80
Consider the following information:
* A merchant has this three-tier category structure setup in the Storefront catalog:
New Arrivals > Women > Clothing
* The category named Clothing has all the clothing items for Women and is merchandised.
* A Search Refinement named Newness is correctly configured for the Clothing category.
When a merchandiser views the Clothing category, the Search Refinement appears and Works as expected. However, the merchandiser does not see the Search Refinement when searching for Clothing via the Storefront search.
What is the Reason?

  • A. The Search Refinement definitions is not set up for the Root Category
  • B. The Search Refinement definition is not set up for the Women category
  • C. The Search Refinement definition is not set up for the New Arrivals Category.
  • D. There are conflicting Search Refinement definitions for Clothing and one of its parent categories

正解:C


質問 # 81
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. Add a resource file for every locale for which the attribute needs to be translated.
  • B. Create a custom attribute on the product system object and set it as localizable.
  • C. set the product system object type as localizable.

正解:B


質問 # 82
An Architect has been asked by the Business to integrate a new payment LINK cartridge. As part of the integration, the Architect has created four new services to access various endpoints in the integration.
How can the Architect move the new services to Production when the integration is ready for launch?

  • A. The new services must be manually exported from staging and Imported into Production.
  • B. The new services will be moved to production with a Site Import.
  • C. The new services will be moved to Production with a Code Replication.
  • D. The new services will be moved to Production with a Data Replication.

正解:A


質問 # 83
A merchant has complained to the developers that some products are not appearing in the storefront and has asked them to diagnose and solve the issue.
Which two factors might be causing a product to be hidden?
Choose 2 answers

  • A. Product does not have any images.
  • B. Product lacks a price.
  • C. Product is not online.
  • D. Product Available to sell is <1.
  • E. Product has been set to searchable.

正解:A、B


質問 # 84
An Order Management System (OMS) handles orders from multiple brand specific sites, as part of the processing, the OMS sends the processing detail to be added at notes to the orders in B2C Commerce. These processing details are captured temporarily in custom objects, and are later processed by a batch Job that:
* Processes the custom object to extract the orderid and note data.
* Tries to load the order.
* If the order is not found, it deletes the custom object and moves on.
* If the order is found, it updates notes In the Order, upon successful update of this order, it deletes the custom object.
There is an Issue reported that the job is constantly failing and custom objects are growing in number. On investigating the production look the message below is being logged on each failure:

What are three solution The Architect can take to fix this issue without losing meaningful data?
Choose 3 answers

  • A. Using BM site import/export, soften the
    <quota id=''object.orderPo.relation,notes''> <custom-action>warn<custom-action> </quots> to make sure that neither order notes are lost and custom object is processed.
  • B. Take the backup of the custom object and delete the custom object to ensure on the next job run the custom objects are getting processed.
  • C. Take the backup of the Order as XML and delete the notes from Order to ensure on the next job run the custom objects are getting processed.
  • D. Take the backup of the Order as XML and delete the Order to ensure on the next job run, the custom objects are getting processed.
  • E. Engage B2C Commerce Support Team to soften the quota limit for ''object.OrderPO.relation.notes''

正解:A、C、E


質問 # 85
Once the Cache Information tool of the storefront toolkit is enabled, how can a Digital Developer view caching information for a particular component of the page?

  • A. Open the Request Logs to view the caching information.
  • B. Hover over the caching icons now present on the storefront.
  • C. Right-click on the component in UX Studio and view the caching properties of the file.
  • D. Start a pipeline debugging session and view the caching information provided.

正解:B


質問 # 86
There is a business requirement that a custom controller in app_custom_my_cartridge invokes the calculateTax(basket) function of the dw, order calculateTex hook that is defined in app_storefront_base. How can the developer implement this call?
A)

B)

C)

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

正解:C


質問 # 87
......

今すぐCCD-102問題を使おうCCD-102問題集PDF:https://jp.fast2test.com/CCD-102-premium-file.html

問題集練習試験問題学習ガイドはCCD-102試験にはこれ:https://drive.google.com/open?id=1GFANREdZQ7ateqm89tAk3gzaSuQ2Pdts


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어