[May-2023] Exam Sure Pass Salesforce Certification with CCM-101 exam questions [Q53-Q69]

Share

[May-2023] Exam Sure Pass Salesforce Certification with CCM-101 exam questions

Real Salesforce CCM-101 Exam Questions Study Guide

NEW QUESTION 53
Which is an appropriate use of the <isif> ISML tag that follows B2C Commerce and SFRA best practices?

  • A. Redirect users to the registration page if they are not logged in
  • B. Implement involved business logs through conditional statements.
  • C. Display a section of the page to logged users only

Answer: B

 

NEW QUESTION 54
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. Ad and Image custom preference to the Sitepreference system object type
  • B. Add a Site-specific custom attribute to the Product system object type.
  • C. Add a Localizable custom attribute to the Certificate system object type.
  • D. Add a Localizable custom preference to the SitePreference system object type.

Answer: B

Explanation:

 

NEW QUESTION 55
A developer is checking for Cross Site Scripting (XSS) and found that the quick search is not escaped (allows inclusion of Javascript) in the following script:

How would the developer resolve this issue?

  • A. Use <toprint value="${searchPhrase}" />
  • B. Use <isprint value="${searchPhrase}* encoding-'jshtmr />
  • C. Replace ' with double Quote*
  • D. Use <isprint value='${searchPhrase} encoding-'jsblock" />

Answer: D

 

NEW QUESTION 56
A developer needs to display a products list of their "Women Dresses" category in a new web application, independent of their main B2C Commerce site. This custom listing page needs to be styled differently from the existing one, as per marketing requirements.
Which B2C Commerce tool should the developer use to collect the necessary information?

  • A. The Search-Show Controller URL to perform a web crawl.
  • B. The ProductSearch resource of the Shop OCAPI.
  • C. The existing category's endpoint to perform a REST call.
  • D. The iframe of the existing category page.

Answer: A

 

NEW QUESTION 57
A B2C Commerce developer has recently completed a tax service link cartridge integration into a new SHU site. During review, the Architect notices the basket calculation hook is being run multiple times during a single tax call.
What is the reason for the duplicate calculations being run?

  • A. There are multiple hook.js Wes referring to the same hook.
  • B. The LINK cartridge Is Included multiple times in the cartridge path.
  • C. The checkout is designed to recursively refer to the same hook.
  • D. The tax cat is being called multiple times.

Answer: D

 

NEW QUESTION 58
A client has custom object definition and requirement that occasional data changes in staging also need to exist in production, Which task should the developer perform to meet these requirements when setting up the custom object?

  • A. Create two copies of the custom object in staging and set Sharing = True.
  • B. Create the custom object definition in staging as Replicable
  • C. Create the custom object definition in staging as Shared
  • D. Create the custom object definition in production as Replicable

Answer: B

 

NEW QUESTION 59
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. products
  • B. info-export
  • C. custom-products
  • D. custom-export

Answer: C

 

NEW QUESTION 60
During a technical review, the Client raises a need to display product pricing on the Product Detail Page (PDP) with discounted values per promotion. The Client notes customers complained of bad user experiences in the past when they would add a product to the basket from the cached PDP and then see a higher price when they started checkout as the promotion had expired.
What should the Architect suggest be implemented for this given that performance should be minimally impact?

  • A. Modify the page to vary the cache by price and promotion.
  • B. Create a separate template or view based on the promotion.
  • C. Adjust the PDP to have a low caching period during the promotion.
  • D. Remove caching of the product page during the promotion.

Answer: A

 

NEW QUESTION 61
A developer has the following files in template/resources:
account.proierties
weight.unit=kilos
account_en.propierties
weight.unit=stones
account_en_US.propierties
weight.unit= pounds
Using the default locale configuration, what is the current outcome of the page that renders the account.isml template snippet below when visiting the Sofrefront with the English for Canada(en_CA) locale= Your parcel weighs 10 ${Resource.msg('weight.unit','account')}

  • A. Your parcel weighs 10 undefined.
  • B. Your parcel weighs 10 pounds.
  • C. Your parcel weighs 10 stones.
  • D. Your parcel weighs 10 kilos

Answer: C

 

NEW QUESTION 62
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_newsite is after app_storefront.
  • B. Set the cartridge path so that app_newsite is before app_storefront.
  • C. Set the cartridge path to include only app_newsite.
  • D. Set the cartridge path so that app_storefront is before int_cybersource.

Answer: D

 

NEW QUESTION 63
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. Set the root log level to debug.
  • C. Set the logging global preference to true.
  • D. Request that the developer's account be given permission to the Log Center of the current realm.

Answer: A,D

 

NEW QUESTION 64
A merchant wants to obtain an export file that contains all the products .assigned to their Storefront catalog. They do not know how to achieve this easily without manual processing, so asked their developer to help Generate this. The merchant s Instance setup is as follows:
* They have one Master catalog and one storefront catalog.
* Some, but not all, of the products in the Master catalog are assigned to categories within the Storefront catalog.
Which method allows the developer to generate the export for the merchant?

  • A. Using the Site Import and Export module, export both the Site catalog and the Master catalog in a single archive.
  • B. Using the Site Import and Export module, export the Master catalog filtered by the site catalog categories to export specific products.
  • C. Using the Catalog Import and Export module, export the Master catalog with a category-assignment search to export specific

Answer: B

 

NEW QUESTION 65
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 logging global preference to true AND check the box for Info under Log Files
  • B. Set the root log level to debug AND check the box for info under Log Files.
  • C. Set the logging global preference to true AND set the root log level to debug.

Answer: A

 

NEW QUESTION 66
A new dent is moving from their existing ecommerce platform to B2C Commerce. They have an existing service that connects to the Email Marketing System. The endpoint of the service can directly parse the data posted by the customer from the Storefront page for marketing materials subscriptions. it if required that the service implementation on the B2C Commerce site supports authentication and encoding.
What type should the Architect document this new service as?

  • A. HTTP Form
  • B. SOAP
  • C. HTTP
  • D. Generic

Answer: B

 

NEW QUESTION 67
A merchant has a requirement to render personalized content to n a category page via a Content Slot that targets VIP high-spending customers during a specific promotional period.
Which two items should the developer create to achieve the specified requirements?
Choose 2 answers:

  • A. Slot Configuration
  • B. VIP Customer Group
  • C. Rendering Template
  • D. Page Template

Answer: A,C

 

NEW QUESTION 68
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. SOAP Form
  • B. POST Form
  • C. HTML Form
  • D. HTTP Form

Answer: D

 

NEW QUESTION 69
......

Updated and Accurate CCM-101 Questions for passing the exam Quickly: https://www.lead2passexam.com/Salesforce/valid-CCM-101-exam-dumps.html

Download Real CCM-101 Exam Dumps for candidates. 100% Free Dump Files: https://drive.google.com/open?id=1MAwEmmKFCpbSjuMDGLlxQK9BxvMieDYQ