あなたを必ず合格させるCCM-101問題集PDF 2023年最新のに更新されたのは208問あります
Salesforce CCM-101リアル試験問題と解答を無料で提供いたします
CCM-101試験は、B2C Commerce Cloudストアの管理と商品化の基礎をカバーするSalesforce CCM-100試験の拡張版です。試験の拡張版は、追加のトピックをカバーし、より詳細な分野の見取り図を提供しています。CCM-101試験は、スキルと知識をさらに向上させ、B2C Commerce Cloudストアの管理と商品化についてより深い理解を得たいプロフェッショナルに最適です。
Salesforce CCM-101 認定試験の出題範囲:
| トピック | 出題範囲 |
|---|---|
| トピック 1 |
|
| トピック 2 |
|
| トピック 3 |
|
| トピック 4 |
|
| トピック 5 |
|
質問 # 58
A client that sells to multiple countries in Europe needs to disable Apple Pay for Denmark.
Which Business Manager module is used to achieve this requirement?
- A. Apple Pay
- B. Payment Methods
- C. Payment Processors
- D. Locale Payments
正解:D
質問 # 59
A company that is a shoe-producer is doing Salesforce B2C Commerce implementation. In their Enterprise Resource Warning (ERP) system, the products are marked as being one of three types: boots, sandals, and sneakers. The business requirements based on the type are:
* The messaging on Product Detail page is different
* Customers are able to filler their Product Search Results
The customer's operations team asks about the format in which to send this value in the catalog.
Which data type should the Architect specify for this attribute In the Data Mapping document?
- A. A custom attribute of type enum-of-string (single selectable value)
- B. A custom attribute type set-of-string containing multiple values.
- C. A custom attribute of type string containing comma separated values.
- D. A custom attribute of type enum-of-string (multiselect able value).
正解:A
質問 # 60
Reference the following code snippets that allow a form to function correctly.
Which code should a developer insert at the EXPRESSION placeholder m the ISML template snippet above to have the form work as expected?
- A. sowslettersform
- B. Pdict, newsletter
- C. pdict.newslettersFrom
正解:C
質問 # 61
Given the SFRA Controller below:
Why would a JavaScript debugger, that is stopped at line 06, fall to show the viewdata variable in the inspection tool?
- A. viewdata is a B2C Script reserved name.
- B. cache. applyDefauItCache is not a valid middleware.
- C. viewdata is assigned but not declared.
- D. viewdata is declared but not assigned.
正解:C
質問 # 62
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. Option C
- B. Option A
- C. Option B
- D. Option D
正解:A
質問 # 63
The client provides the system integrator with translation messages for the newly added "French" ("fr") locale.
What is the correct folder to store the associated .properties files?
- A. cartridge/resources
- B. cartridge/templates/resources/fr
- C. cartridge/templates/fr
- D. A cartridge/templates/resources
正解:D
質問 # 64
Which three operations should be done in a controller?
Choose 3 answers
- A. Use the Script API to generate data for the view.
- B. Use the model needed for the view.
- C. Generate the response as JSON or HTML
- D. Create a plain JavaScript object representing a system object
- E. Use middleware functions when applicable
正解:B、C、E
質問 # 65
Given a job step configured in the steptype.json, a developer needs to add a custom status code
"No_FILES_FOUND".
Which code snippet will complete the requirement?
- A. var status = {success: 'OK'. Message: 'NO_FILES_FOUND'};
return status; - B. return 'NO_FILES_FOUND
- C. var status = require('dw/system/status');
return new Status(Status.OK, 'NO_FILES_FOUND'); - D. this.status = 'NO_FILES_FOUND'
return this;
正解:C
解説:
質問 # 66
a B2C Commerce developer has Implemented a job that connects to an SFTP, loops through a specific number of .csv rtes. and Generates a generic mapping for every file. In order to keep track of the mappings imported, if a generic mapping is created successfully, a custom object instance w created with the .csv file name. After running the job in the Development instance, the developer checks the Custom Objects m Business Manager and notices there Isn't a Custom Object for each csv file that was on SFTP.
What are two possible reasons that some generic mappings were not created? Choose 2 answers
- A. Invalid format in one or more of the .csv files.
- B. The job needs to run on Staging and then replicate the generic mappings and custom objects on Development
- C. The maximum number of generic mappings was reached.
- D. The generic mappings definition need to be replicated from Staging before running the job.
正解:A、C
質問 # 67
Which is an appropriate use of the <isif> ISML tag that follows B2C Commerce and SFRA best practices?
- A. Display a section of the page to logged users only
- B. Implement involved business logs through conditional statements.
- C. Redirect users to the registration page if they are not logged in
正解:B
質問 # 68
A job executes a pipeline that makes calls to an external system.
Which two actions prevent performance issues in this situation? (Choose two.)
- A. Configure a timeout for the script pipelet.
- B. Use asynchronous import or export jobs.
- C. Disable multi-threading.
- D. Use synchronous import or export jobs
正解:A、C
質問 # 69
Which three object types can a developer import using the Merchant Tools > Content > Import & Export module in Business Manager? (Choose three.)
- A. Content slots
- B. Folders
- C. Images and other static assets
- D. Products
- E. Content assets
正解:A、B、D
質問 # 70
A Digital Developer is working on a multi-site realm. A new site requires a different layout for the account landing page. The business logic and data model remain the same. The existing code is in AccountControl.js and accountlanding.isml in the app_storefront cartridge. The app_storefront cartridge contains code for all other business functions. The cartridge path for the new site is currently int_cybersource:int_paypal:app_storefront.
The Developer creates a new cartridge named app_newsite that contains only the accountlanding.isml template for the new site.
Which modification should be made to the new cartridge path?
- A. Set the cartridge path so that app_storefront is before int_cybersource.
- B. Set the cartridge path so that app_newsite is before app_storefront.
- C. Set the cartridge path so that app_newsite is after app_storefront.
- D. Set the cartridge path to include only app_newsite.
正解:A
質問 # 71
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 controller function that handles the submitted form
- B. In the middleware chain of the controller post route
- C. In the model function that persists the form data
- D. In the controller function that displays the form
正解:B
質問 # 72
A merchant has a new requirement to accept American Express credit cards on its Storefront. A credit card payment method already exists.
Which step must a developer take in Business Manager to achieve this?
- A. In Payment Methods, enable American Express as a credit card type.
- B. Add American Express into the Order settings in Site Preferences.
- C. In Payment Processor, create American Express as a payment type.
- D. Add American Express as a Payment Preference in Site Preferences.
正解:D
質問 # 73
A developer has a requirement to display a banner in two different category pages.
Which snippet of code should the developer add to a template to allow the merchant to configure each independently?
A)
B)
C)
- A. Option C
- B. Option B
- C. Option A
正解:B
質問 # 74
A Digital Developer needs to store information temporarily and decides to create a custom object.
Which code creates a custom object?
- A. CustomObject.createCustomObject(CustomObjectType,primaryKey);
- B. CustomObjectMgr.createCustomObject(CustomObjectType,primaryKey)
- C. CustomObject.createCustomObject(primaryKey,CustomObjectType);
- D. CustomObjectMgr.createCustomObject(primaryKey);
正解:A
質問 # 75
The developer created a new Storefront category in storefront-catalog-m-en, but when viewing the Storefront site, the category is not visible.
What are two possible reasons?
- A. The category does not contain available products
- B. The category is not sorted
- C. The category is offline.
- D. The Storefront catalog is offline
正解:A、D
質問 # 76
......
合格できるSalesforce CCM-101試験情報と無料練習テスト:https://jp.fast2test.com/CCM-101-premium-file.html
2023年最新のの問題CCM-101問題集を試そう!更新されたSalesforce試験が合格できます:https://drive.google.com/open?id=1O3Hc5CXT9_ue3PZHKT-CMSgnJzgJeXm0