Jan-2024 Free Salesforce CCM-101 Exam Question Practice Exams [Q68-Q85]

Share

Jan-2024 Free Salesforce CCM-101 Exam Question Practice Exams

Ace CCM-101 Certification with 208 Actual Questions

NEW QUESTION # 68
The Client wishes to implement a third party integration that allows for free shipping If the customer Is a member of the third party service. When the customer's order is exported to the Order Management System (OMS) it also creates a custom object in order to track additional data before sending that order data to the third-party service as well.
What technical concern should the Architect raise to protect performance and stability of the site1?

  • A. The customer's order data sent to a third-party and related security needs.
  • B. The custom object quota and related retention or deletion needs.
  • C. The OMS having order data sent to a thud party and related security needs.
  • D. The customer order quota and related retention or deletion needs.

Answer: B


NEW QUESTION # 69
A developer wants to embed a link to a content page from within the body of another content asset. the target content asset ID is: about-us Which option represents the correct format to use?

  • A. $url(''page-Show,''cid'', about-us')$
  • B. $url('Content-Page', cid 'about-us;)$
  • C. $url('Content_Show', 'about-us')$

Answer: A


NEW QUESTION # 70
Given the above OCAPI definitions, which permission or permissions apply?

  • A. Allows external applications to create coupons
  • B. Allows external applications to create, update, and delete coupons
  • C. Allows external applications to update coupons
  • D. Allow external applications to create, update, and delete both coupons and coupon codes

Answer: C


NEW QUESTION # 71
A merchant has reported that customers are seeing low stock items at the top of their search results, giving them a subpar customer experience and impacting conversion.
How might this issue be resolved to ensure a better customer journey?

  • A. Create a job that sets all unavailable products to be hidden. Schedule the job to run hourly to clean up the catalog on a regular basis.
  • B. In Business Manager, enter a higher boost factor for availability in Searchable Attributes.
  • C. In Business Manager, select Show Orderable Products Only at the root level to hide any products that are currently out of stock.
  • D. In Business Manager, set an availability low ranking threshold in Search Preferences.

Answer: A


NEW QUESTION # 72
A Digital Developer must resolve a performance issue with product tiles. The Developer determines that the product tiles are NOT being cached for a long enough period.
Which two methods can the Developer use to verify the cache settings for the product tiles? (Choose two.)

  • A. View the cache information provided by the Merchant Tools > Technical Reports Business Manager module.
  • B. Enable the template debugger to verify the cache times for the producttile.isml template.
  • C. Enable cache information in the storefront toolkit and view the cache information for the product tile.
  • D. View the product list page cache settings provided in the Administration > Manage Sites Business Manager module.

Answer: C,D


NEW QUESTION # 73
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. Use the "append" method of the server module for the existing route.
  • B. Replace the callback function of the existing route using superModule.
  • C. Copy the existing route in a new cartridge and modify where necessary.
  • D. Use the "extend" method of the server module for the existing route.

Answer: D


NEW QUESTION # 74
A client has a single site with multiple domains, locales, and languages. After launch, there is a need for the client to perform offline maintenance. The client would like to show the same maintenance page for each locale.
Which version of aliases,Json file below will accomplish this task?
A)

B)


D)

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

Answer: C


NEW QUESTION # 75
An ecommerce site has dynamic shipping cost calculation. it allows the customers to see their potential shipping costs on the Product Detail Page before adding an item to the cart.
For this feature, shipping touts are calculated using the following logic:
* Set the shipping method on the Basket
* Add the item to the basket, calculate the basket total and get the shipping cost for this method
* Remove the item from the Basket to restore the original state
* The above process is repeated for each shipping method
During the testing it was discovered that the above code violates the spi.basket.addResolveInSameResquest quota.
What should the Architect do to resolve this issue and maintain the business requirement?

  • A. Wrap the adding of product and shipping cost calculation in a transaction which Is then rolled back to restore the original state
  • B. Omit the calculation of shipping cost until the customer is ready to check out and has chosen the shipping method they want to
  • C. Wrap each Individual step of the process its own transaction Instead of using one transaction for all steps.
  • D. Omit the removal of the Item and speed up the process for the customer by adding the product to the basket for them.

Answer: B


NEW QUESTION # 76
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. Disable caching for these pages to ensure that the correct template is used to render the mobile and desktop pages.
  • B. Change the URL structure to include desktop and mobile as URL parameters to ensure different cached versions of the page
  • C. Create customer groups for desktop and mobile users and empty promotions linked to these groups to ensure different cached versions of the page.
  • D. Create customer groups for desktop and mobile users and uh remote includes based on these groups to render the mobile and desktop pages

Answer: D


NEW QUESTION # 77
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', newsLetterForm.email.value);
  • B. Var customobject = dw.object.CustomObjectMgr.createNewsletterSubscription('email', newsLetterForm.email.value);
  • C. Var customobject =
    dw.object.CustomObjectMgr.createCustomObject(newsletterForm.email.value,
    'NewsletterSubscription');
  • D. Var customobject = dw.object.CustomObjectMgr. createCustomObject
    ('NewsletterSubscription','email', newsLetterForm.email.value);

Answer: A


NEW QUESTION # 78
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 rolls over and the last used log is overwritten.
  • D. The log file is deleted and recreated from scratch.

Answer: D


NEW QUESTION # 79
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 # 80
Recent code changes to an existing cartridge do not appear correctly on a Storefront. The developer confirms that the code is uploaded in the IDE and ensures that the cartridge is associated with the sandbox.
Which two additional steps should the developer take to troubleshoot this problem?
Choose 2 answers

  • A. Check the Storefront site cartridge path.
  • B. Check that the search index was recently rebuilt.
  • C. Check that the correct code version is selected.
  • D. Check the Business Manager site cartridge path.

Answer: A,B


NEW QUESTION # 81
A digital instance has one site, with one master product catalog separate from the site catalog. Some, but NOT all, products in the master catalog are assigned to categories of the site catalog.
Using Business Manager, how can a Digital Developer create a catalog export file that contains only the products assigned to the site catalog?

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

Answer: B


NEW QUESTION # 82
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. Version_range
  • B. Read_attributes
  • C. Client_id
  • D. Resource_id

Answer: C,D


NEW QUESTION # 83
Given the above OCAPI definitions, which permission or permissions apply?

  • A. Allows external applications to create coupons
  • B. Allows external applications to create, update, and delete coupons
  • C. Allows external applications to update coupons
  • D. Allow external applications to create, update, and delete both coupons and coupon codes

Answer: C


NEW QUESTION # 84
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.newslettersFrom
  • C. Pdict, newsletter

Answer: B


NEW QUESTION # 85
......

CCM-101 Questions PDF [2024] Use Valid New dump to Clear Exam: https://www.prep4sures.top/CCM-101-exam-dumps-torrent.html

PASS Salesforce CCM-101 EXAM WITH UPDATED DUMPS: https://drive.google.com/open?id=1nlZXyJKJ1FbcNKNtAm-lRFviCsLZtHWs