検証済みCCM-101問題集と解答で2023年最新のCCM-101をダウンロード
更新された100%カバー率リアルCCM-101試験問題で100%合格保証付いてます
Salesforce CCM-101(Manage and Merchandise a B2C Commerce Cloud Store - Extended)認定試験は、Salesforceを使用してB2Cコマースクラウドストアの管理と商品化のスキルと知識を検証したい個人向けに設計された認定プログラムです。この試験は、小売業界での経験があり、B2Cコマースの分野で専門知識を高めたいプロフェッショナルを対象としています。この認定資格は、効果的な管理と商品化技術を使用して収益と顧客満足度を最大化する能力を証明したい個人に最適です。
質問 # 44
The Home-Show route uses this middleware chain:
The developer added Home.;s in another cartridge, which is before the original cartridge in the cartridge path, to extend that route but it does not have the middleware chain:
Assuming the code is correct on both functions, what is the expected result?
- A. A RunTime error is thrown, "Error: Params do not match route".
- B. The base code executes, but the custom code is ignored because the signature lines do not match.
- C. The custom code executes and then the base code executes.
- D. The base code executes and then the custom code executes.
正解:A
質問 # 45
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. Checkout exclusion rules in the Merchant Tools > Site Preferences > Checkout Preferences module.
- B. Credit card exclusion rules in the CreditCardType.json configuration file.
- C. Credit cards in the Merchant Tools > Ordering > Payment Methods module.
- D. Credit card exclusion rules in the Merchant Tools > Site Preferences > Payment Preferences module.
正解:C
質問 # 46
Given a NewsletterSubscription custom object that has a key attribute named email of type String, what is the correct syntax to create the NewsletterSubscription custom object and persist it to the database?
- A. Var customobject = dw.object.CustomObjectMgr. createCustomObject
('NewsletterSubscription','email', newsLetterForm.email.value); - B. Var customobject =
dw.object.CustomObjectMgr.createCustomObject(newsletterForm.email.value,
'NewsletterSubscription'); - C. Var customobject = dw.object.CustomObjectMgr.createNewsletterSubscription('email', newsLetterForm.email.value);
- D. Var customobject = dw.object.CustomObjectMgr. createCustomObject
('NewsletterSubscription', newsLetterForm.email.value);
正解:D
質問 # 47
A developer must configure permissions for an Open Commerce API resource on a sandbox instance that currently does not have any permissions configured.
Which two configuration properties are required to enable Access to the resource?
Choose 2 answers
- A. Client_id
- B. Read_attributes
- C. Version_range
- D. Resource_id
正解:A、D
質問 # 48
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
質問 # 49
What happens if the log file size limit is reached in custom logging?
- A. Logging is suspended for the day.
- B. Logging is suspended for two hours.
- C. The log file is deleted and recreated from scratch.
- D. The log file rolls over and the last used log is overwritten.
正解:C
質問 # 50
During code review, the Architect found that there is a service call on every visit of the product detail woe (PDP).
What best practices should the Architect ensure are followed for the service configuration?
Choose 2 answers
- A. Service logging is disabled.
- B. Service mock up call is configured.
- C. Service timeout is set.
- D. Circuit breaker is enabled.
正解:C、D
質問 # 51
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. Ad and Image custom preference to the Sitepreference system object type
- D. Add a Localizable custom preference to the SitePreference system object type.
正解:A
解説:
質問 # 52
During implementation, the team found that there is a notification controller exposed for an external service that marks the order as paid when notification is received. The notification URL is sent to the service together with the payment request and contains only the URL with orderlD as the parameter.
What should the Architect recommend to the team in order to prevent the unauthorized usage of the controller to mark the orders as paid?
- A. Add a customer number in the callback URL and match the customer number against the one stored on the order.
- B. Add HTTPS restriction to the controller start node.
- C. Add an order token in the callback URL and match the token against the one stored on the order.
- D. Add a session attribute and validate it on the callback.
正解:C
質問 # 53
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 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.
- B. 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.
- C. 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.
- D. 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
質問 # 54
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. Add American Express into the Order settings in Site Preferences.
- B. Add American Express as a Payment Preference in Site Preferences.
- C. In Payment Methods, enable American Express as a credit card type.
- D. In Payment Processor, create American Express as a payment type.
正解:B
質問 # 55
A job executes a pipeline that makes calls to an external system.
Which two actions prevent performance issues in this situation? (Choose two.)
- A. Use synchronous import or export jobs
- B. Use asynchronous import or export jobs.
- C. Configure a timeout for the script pipelet.
- D. Disable multi-threading.
正解:C、D
質問 # 56
Given the above OCAPI definitions, which permission or permissions apply?
- A. Allows external applications to update coupons
- B. Allows external applications to create, update, and delete coupons
- C. Allows external applications to create coupons
- D. Allow external applications to create, update, and delete both coupons and coupon codes
正解:A
質問 # 57
A B2C Commerce Developer has just finished implementing a new promotion code form on checkout. During review, an Architect notes that the form it not using CSRF validation correctly.
Which two options are best practice recommendations for dealing with CSRF validation? Choose 2 answers
- A. Automatically renew the CSRF Token if expired.
- B. Only use GET methods over HTTPS.
- C. Ensure the CSRF protection is validated on form submission.
- D. Only use POST methods over HTTPS.
正解:C、D
質問 # 58
A developer is using logging in scripts to troubleshoot an issue. They are using the dw.system.Log class to write to specific log levels and categories. Which log level is always enabled by default?
- A. INFO
- B. ERROR
- C. FATAL
正解:C
質問 # 59
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. Increase the web service time out
- 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. Change the code that sets the throwOnError attribute of the service to be true.
正解:A、B
解説:
質問 # 60
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 Cart.js controller file:
What should the Developer verify to identify the issue?
- A. The form group has the secure attribute set to true.
- B. The CSRF cartridge is included in the site's cartridge path.
- C. The CSRF token is present in the form and is being submitted in the request.
- D. The CSRF settings in Business Manager are properly configured.
正解:C
質問 # 61
A client sells its products in North America, Europe, and Asia, and has a B2C Commerce Site for each of these markets. The client receives three area-specific snippets of analytics code by a third-party provider to insert in the sites.
How should the developer configure an instance to allow the merchant to independently insert and update these snippets?
- A. Use ISML conditional tags to add the snippet into the codebase.
- B. Create a new "HTML" attribute in the SitePreference object type.
- C. Configure a new Service Profile with the provided snippet of code.
正解:B
質問 # 62
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. Use the existing pipeline debugger.
- B. Modify the debugger configuration and use the existing pipeline debugger.
- C. Create and use a new controller debug configuration.
- D. Create and use a new script debug configuration.
正解:B
質問 # 63
A Digital Developer creates a B2C Commerce server connection in their UX Studio workspace. The Developer adds new cartridges to the workspace, but the cartridges do NOT execute as the Developer expects.
Which three things should the Digital Developer verify to ensure the cartridges are uploaded? (Choose three.)
- A. The Active Server setting is enabled for the server connection.
- B. The Auto-Upload setting is enabled for the server connection.
- C. The cartridge is for the current version of B2C Commerce.
- D. The server is configured to accept incoming connections.
- E. The credentials for the server connection are correctly entered.
正解:B、C、D
質問 # 64
The Client has implemented a different category/search layout for mobile and desktop. The code uses a session attribute called deviceType to choose the corresponding layout. This attribute it populated from the browser user agent. After this implementation they have run into these problems:
* Sometimes desktop pages are being served to both desktop and mobile customers.
* Sometimes mobile pages ate being served to both desktop and mobile customers.
The page has caching implemented that depends; on promotions. SEC is very important and the site traffic is high.
Which solution should the Architect select to resolve the issue without impacting the existing requirements?
- A. Change the URL structure to include desktop and mobile as URL parameters to ensure different cached versions of the page
- B. Create customer groups for desktop and mobile users and empty promotions linked to these groups to ensure different cached versions of the page.
- C. Disable caching for these pages to ensure that the correct template is used to render the mobile and desktop pages.
- D. Create customer groups for desktop and mobile users and uh remote includes based on these groups to render the mobile and desktop pages
正解:D
質問 # 65
The developer is asked to enhance the functionality of an existing controller route by adding information to the response's viewData.
How should the developer approach this task while following SFRA best practices?
- A. Replace the callback function of the existing route using superModule.
- B. Copy the existing route in a new cartridge and modify where necessary.
- C. Use the "extend" method of the server module for the existing route.
- D. Use the "append" method of the server module for the existing route.
正解:C
質問 # 66
......
リアル問題集で100%無料CCM-101試験問題集を試そう:https://jp.fast2test.com/CCM-101-premium-file.html
実際のCCM-101問題集最新練習テスト問題集:https://drive.google.com/open?id=1O3Hc5CXT9_ue3PZHKT-CMSgnJzgJeXm0