合格させるSalesforce Developer CCD-102テスト問題集で[2023年12月03日] 更新された207問あります [Q63-Q79]

Share

合格させるSalesforce Developer CCD-102テスト問題集で[2023年12月03日] 更新された207問あります

Salesforce CCD-102実際の問題と100%カバー率でリアル試験問題


Salesforce CCD-102試験は、Salesforce Commerce Cloudアーキテクチャ、Commerce Cloudスクリプティングとプログラミング、サイトデザインとカスタマイズ、データモデリングと管理、および外部システムとの統合を含む幅広いトピックをカバーしています。また、候補者のCommerce Cloudサイトのトラブルシューティングと最適化能力、サイトメンテナンスとセキュリティのベストプラクティスの理解も試験されます。

 

質問 # 63
A Digital Developer has a new requirement to disable the "Discover" credit card type for all checkouts.
What does the Developer need to change in Business Manager to fulfill this requirement?

  • A. Credit card exclusion rules in the Merchant Tools > Site Preferences > Payment Preferences module.
  • B. Credit cards in the Merchant Tools > Ordering > Payment Methods module.
  • C. Credit card exclusion rules in the CreditCardType.json configuration file.
  • D. Checkout exclusion rules in the Merchant Tools > Site Preferences > Checkout Preferences module.

正解:B


質問 # 64
A Digital Developer is implementing an Open Commerce API call to add products to a basket. Given the following resource configuration:

Which modification allows the requests to successfully execute?

  • A. Change the "methods" value to: ["get", "post"].
  • B. Change the "write_attributes" value to: "(+items)".
  • C. Change the "read_attributes" value to: "(items)".
  • D. Change the "resource_id" value to: "/baskets/*/items".

正解:D


質問 # 65
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


質問 # 66
Universal Containers requires that a new order comments attribute is added to the existing SiteGenesis checkout flow. This new attribute needs to be included as part of the standard order export.
Aside from updating the HTML markup and form definition, which option contains all necessary steps to achieve this task?

  • A. * Add the new attribute to the "Customer" system object.
    * Modify the "COPIaceOrder" controller to add this new attribute to the current session's "Customer" object.
  • B. * Modify the "COPIaceOrder" controller to update a CSV file in the IMPEX WebDAV directory with the order ID and comments.
    * Modify the order export process to read information in the CSV file and include it as part of the export.
  • C. * Add the new attribute to the "Order" system object.
    * Modify the "COPIaceOrder" controller to add this new attribute to the current session's "Order" object.
  • D. * Create a new custom object type for order comments that contains the attributes: order ID and comments.
    * Modify the "COPIaceOrder" controller to create a new order comments custom object upon order completion.

正解:B


質問 # 67
A developer is remotely fetching the reviews for a product.
Assume that it's an HTTP GET request and caching needs to be implemented, what consideration should the developer keep in mind for building the caching strategy?

  • A. Use custom cache
  • B. Cached remote include with cache of the HTTP service
  • C. Remote include with caching only the reviews
  • D. Cache the HTTP service request

正解:D


質問 # 68
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?

  • A. In the middleware chain of the controller post route
  • B. In the model function that persists the form data
  • C. In the controller function that displays the form
  • D. In the controller function that handles the submitted form

正解:A


質問 # 69
A developer has these requirements for out-of-stock products:
Save the SKUs of the out-of-stock products that the customer is interested in Save the customer email regardless if the customer is a guest or registered Email the customer when the product is back-in-stock Which step should the developer perform as part of the solution to achieve the requirements?

  • A. Create a new system object type that has a set-of-string type custom attribute for the SKUs and a string for the email field.
  • B. Create a new custom object type that has a set-of-string type custom attribute for the SKUs and a string for the email field.
  • C. Create a new set-of-string type custom attribute to the system object type Product to save all the customer email addresses for back-in-stock notification.
  • D. Create a new set-of-string type custom attribute to the system object type Profile to save all the SKUs and use the existing email field for the email.

正解:C


質問 # 70
Multiple shoppers report slow performance on the Product Details Page.
Which tool can a developer use to view average response times for the Product-Detail controller route?

  • A. Request Logs
  • B. Pipeline Profiler
  • C. URL Request Analyzer

正解:B


質問 # 71
Universal Containers recently completed updates to their storefront shopping cart page. A problem has been discovered since the update. Users are no longer able to submit coupon codes on this page.
Additionally, authenticated users who try to add a coupon are logged out.
The following processing code Is found In the carets controller file:

What should the Developer verify to Identify the Issue?

  • A. The CSRF token Is present In the form and Is being submitted in the request.
  • B. The form group has the secure attribute set to true.
  • C. The CSRF cartridge Is included in the site's cartridge path.
  • D. The CSRF settings In Business Manager are properly configured.

正解:A


質問 # 72
A developer is asked to create a controller endpoint that will be used in a client-side AJAX request. Its purposes is to display updated information to the user when the request is completed, without otherwise modifying the appearance of the current page.
According to SFRA practices, which method best supports this objective?

  • A. res.render()
  • B. res.print()
  • C. res.json()

正解:C


質問 # 73
A job executes a pipeline that makes calls to an external system.
Which two actions prevent performance issues in this situation? (Choose two.)

  • A. Disable multi-threading.
  • B. Configure a timeout for the script pipelet.
  • C. Use asynchronous import or export jobs.
  • D. Use synchronous import or export jobs

正解:A、B


質問 # 74
Given the customer basket described below:
* A customer has an existing basket that consists of multiple items.
* One of the items is identified as a gift item by an attribute at the product line item.
The developer needs to write custom code to fetch the customer basket and then modify the basket based upon the items in the cart. If the basket contains any gift items, modify the basket and create a separate shipment for the gift item.
Four hooks are required to make the modification, beginning with modifyGETRespone and ending with validatebasket.
* Dw.ocapi.shop.basket.modifyGETResponse
* -- missing hook -
* -- missing hook --
* dw.ocapi.shop.basket.validateBasket
What are the two missing hooks in the middle?

  • A. dw.ocapi.shop.basket.shipment.afterDELETE
  • B. dw.ocapi.shop.basket.shipment.beforePATCH
  • C. dw.ocapi.shop.basket.shipment.beforeDELETE
  • D. dw.ocapi.shop.baskep.shopment.beforePOST

正解:B、D

解説:
Estos indican antes de actualizar y antes de introducir


質問 # 75
Universal Containers wants to give customers the ability to refine product search results by a product custom attribute, weightCapacity.
Which series of steps should a Digital Developer take to show this refinement on the storefront?

  • A. Define a search refinement for weightCapacity, then clear the page cache segment for Search-Show.
  • B. Define a sorting rule for weightCapacity, then rebuild the product search index.
  • C. Define search-suggestion buckets for weightCapacity, then rebuild the product search index.
  • D. Define a search refinement for weightCapacity, then rebuild the product search index.

正解:D


質問 # 76
A Digital Developer extends a system object, Product, and adds a Boolean attribute, "sellable," to it.
Assuming "prod" is the variable name handling the product, what code can the Developer use to access it?

  • A. prod.extended.sellable
  • B. prod.sellable
  • C. prod.persistable.sellable
  • D. prod.custom.sellable

正解:D


質問 # 77
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?

  • A. Logger.getLogger('profile,).debug("Error retrieving profile email. Status Code: {0} was returned.",
    http.statusCode);
  • B. logger.getLogger('profile').debug("Error retrieving profile email. Status Code: ", http.statusCode);
  • C. logger.debug("Error retrieving profile email. Status Code: {0} was returned.", http.statusCode);
  • D. Logger.getLoggerO-debugfError retrieving profile email. Status Code: {0} was returned.",
    http.statusCode);

正解:A


質問 # 78
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. Which two tasks does the developer need to perform to correct this issue?
Choose 2 answers

  • A. Check the box for Info under Log Files.
  • B. Request that the developer's account be given permission to the Log Center of the current realm.
  • C. Set the root log level to debug.
  • D. Set the logging global preference to true.

正解:A、B


質問 # 79
......


Salesforce CCD-102は、Salesforce Commerce Cloudを使用してeコマースアプリケーションの構築とカスタマイズのスキルと知識を検証したいB2C Commerce開発者向けに設計された認定試験です。この試験は、SFRAを備えたB2C Commerce開発者としても知られており、Salesforce Commerce Cloud Digital PlatformおよびSiteGenesisリファレンスアプリケーションと協力する候補者の能力を測定します。

 

Salesforce CCD-102リアル2023年最新のブレーン問題集で模擬試験問題集:https://jp.fast2test.com/CCD-102-premium-file.html

CCD-102無料試験問題と解答PDF更新されたのは2023年12月:https://drive.google.com/open?id=1GFANREdZQ7ateqm89tAk3gzaSuQ2Pdts


弊社を連絡する

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

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

サポート: 現在連絡 

English Deutsch 繁体中文 한국어