[Aug 04, 2022] Valid CCM-101 Test Answers Full-length Practice Certification Exams [Q80-Q102]

Share

[Aug 04, 2022] Valid CCM-101 Test Answers Full-length Practice Certification Exams

Accurate & Verified 2022 New CCM-101 Answers As Experienced in the Actual Test!


Salesforce CCM-101 Exam Syllabus Topics:

TopicDetails
Topic 1
  • Configuring Catalog-Level Image Management Settings
  • Configuring Search Refinements for a Site and a Category
Topic 2
  • Using Search Placement or Search Rank to Change Product Order in a Category
  • Managing Synonyms and Hypernyms
Topic 3
  • Managing Variation Masters and Variation Products
  • Using Dynamic Customer Groups
  • Adding a Banner to a Category
Topic 4
  • Applying a Rule with Dynamic Attributes to Change Product Order in a Category
  • Managing the Exclusion of Category Names
Topic 5
  • Storefront Sorting Options Menu
  • Managing Search Suggestions
  • Managing Search Redirects
  • Managing Common Phrases
Topic 6
  • Manually Changing the Order of Products in a Category
  • Configuring Catalog-Level Product Attribute Settings
Topic 7
  • Using Static Customer Groups
  • Inventory Settings & Management
  • Managing Product Attributes
Topic 8
  • Automatically Change the Search Result Order
  • Configuring Searchable Attributes
  • Editing Category Configuration

 

NEW QUESTION 80
A client wants to differentiate their monobrand stores with a special icon when shown in the store locator. The information is saved in a true/false custom attribute for each Store object in Merchant tools.
How should the developer follow SFRA best practices to expose this data for rendering?

  • A. Ad dan <isscript> to the template, and call StoreMgr.searchStoresByCoordinates();
  • B. Pass the Store system object to the template, so that custom propierties are available
  • C. Use the module.superModule functionality and the call method to add a new property to the Store Model.
  • D. Extend the existing Stores_Find controller with a new middleware function that performs the query

Answer: C

 

NEW QUESTION 81
A merchant has a requirement to sell a combination of four existing products with a unique product ID.
This collection will be known as 'Our Top Combo', and is base don the merchant's trading information that shows this combination to be in high demand.
What does the developer need to do next to fulfill this requirement?

  • A. Create a recommendation rule associating the four products as a recommendation group.
  • B. Create a Product Set called 'Our Top Combo' and add the products into the set.
  • C. Create a unique produce to called 'Our Top Combo' and add the four products into the Product Bundles tab.
  • D. Create a Content Slot with Content Type = Product and add the four component products into that slot.

Answer: C

 

NEW QUESTION 82
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 "resource_id" value to: "/baskets/*/items".
  • C. Change the "write_attributes" value to: "(+items)".
  • D. Change the "read_attributes" value to: "(items)".

Answer: B

 

NEW QUESTION 83
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 declared but not assigned.
  • B. viewdata is assigned but not declared.
  • C. viewdata is a B2C Script reserved name.
  • D. cache. applyDefauItCache is not a valid middleware.

Answer: B

 

NEW QUESTION 84
Which method is efficient and scalable because it uses the product search index rather than searching the database?

  • A. ProducrlndexModel.getOrderableProductsOnly()
  • B. ProductSearcbHodel().gerProductSearchHita()
  • C. ProductVanari.cnMcciel.aerVariams ()
  • D. ProduccAvailabiliryModel.isOrderable()

Answer: B

 

NEW QUESTION 85
A Digital Developer has identified that the code segment below is causing performance problems.

What should the Developer do to improve the code?

  • A. Use a system attribute instead of the isOnSaleFlag custom attribute.
  • B. Avoid post-processing and use the isOnSaleFlag attribute as a search refinement.
  • C. Breaks the process into separate loops.
  • D. Avoid using an Iterator and use a Collection instead.

Answer: C

 

NEW QUESTION 86
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. Payment Methods
  • B. Locale Payments
  • C. Apple Pay
  • D. Payment Processors

Answer: C

 

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

Answer: A

 

NEW QUESTION 88
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 rebuild the product search index.
  • B. Define a sorting rule for weightCapacity, then rebuild the product search index.
  • C. Define a search refinement for weightCapacity, then clear the page cache segment for Search-Show.
  • D. Define search-suggestion buckets for weightCapacity, then rebuild the product search index.

Answer: A

 

NEW QUESTION 89
A Digital Developer has detected storefront pages being rendered with an error message. After inspecting the log files, the Developer discovered that an enforced quota is being exceeded.
What action should the Developer take to stop the quota violation?

  • A. Rewrite the code that is causing the overage.
  • B. Take no action, the overage will be resolved when concurrent visitors are reduced.
  • C. Change the Business Manager configuration for the quota settings.
  • D. Ask support to remove the quota limit.

Answer: C

 

NEW QUESTION 90
A Digital Developer wants pass control to an ISML template from a JavaScript Controller and load product on the pipeline dictionary with the name myProduct.
Which code sample will achieve this?

  • A. ISML.renderTemlpate ( "helloworld.isml", { myProduct: product });
  • B. ISML.renderTemlpate ( "helloworld.isml", { "product": myProduct });
  • C. ISML.renderTemlpate ( "helloworld.isml", { "myProduct": "product" });
  • D. ISML.renderTemlpate ( "helloworld.isml", { product: myProduct });

Answer: C

 

NEW QUESTION 91
Business Manager has the configuration:
* Active Log category is "root"
* Log level of WARN
The code below is executing:
var log = Logger.getLogger("products");
Using this information, which two logs will be written?
Choose 2 answers

  • A. log.error("This is an error message");
  • B. log.warn("This is a warn message");
  • C. log.debugfThis is a debug message");
  • D. log.info("This is an info message");

Answer: B,D

 

NEW QUESTION 92
A developer working on a multi country site is asked to store country specific data that drives the creation of a country selector. Examples of the data stored are:
* Pricebook to be used
* Image URL for country flag
The data used in staging also applies in production, but only for this site.
Which approach should the developer take to implement these requirements?

  • A. Create site-specific content assets to store the data for each country.
  • B. Create a replicable, site-specific Custom Object with the custom data for each country.
  • C. Extend the Locale System Object to contain the custom data for each country.

Answer: B

 

NEW QUESTION 93
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. Modify the debugger configuration and use the existing pipeline debugger.
  • B. Create and use a new script debug configuration.
  • C. Use the existing pipeline debugger.
  • D. Create and use a new controller debug configuration.

Answer: A

 

NEW QUESTION 94
Universal Containers is preparing their storefront to use Open Commerce APIs (OCAPI).
To which hook should the Digital Developer move taxation logic to ensure consistent order totals within B2C Commerce?

  • A. dw.ocapi.shop.order.validateOrder
  • B. dw.ocapi.shop.basket.afterPostShipment
  • C. dw.ocapi.shop.basket.calculate
  • D. dw.ocapi.shop.order.afterPOST

Answer: C

 

NEW QUESTION 95
A developer is importing edits for two different sites into the same sandbox, and is provided with four different files.
Which two XML files should the developer import using the site-specific Merchant Tools import modules, instead of the Administration section import modules?
Choose 2 answers.

  • A. System type extensions (solo en Sites)
  • B. Promotions ( en sites y en online marketing)
  • C. Search Settings En (search y en Sites)
  • D. Site Jobs (sites)

Answer: B,C

 

NEW QUESTION 96
Given the following snippet:
* Server.append( 'Show' , function (req, res, next) )
According to SFRA, which two options shows a correct way to complete the code above in order to provide data to the response using a controller?
Choose 2 answers

  • A. res.render('/content/myPage',{data: myDataObject});next();});
  • B. res.viewData = {data: myDataObject};res.render('/content/myPage');next();});
  • C. res.render('/content/myPage');next();}).append{(Data:myDataObject});
  • D. res.setViewData ({data: myDataObject});res.render('/content/myPage');next();});

Answer: A

 

NEW QUESTION 97
A developer is tasked with implementing the necessary code for a new Page Designer component.
What are the two purposes of the JSON metadata definition file that the developer creates7 Choose 2 answers

  • A. Defines the attributes that a merchant enters when using the component type.
  • B. Defines regions within the component type.
  • C. Defines the responsive layout of the rendered template.
  • D. Defines the business and rendering logic of the component required by the merchant.

Answer: A,B

 

NEW QUESTION 98
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 Catalog Import and Export module, export the Master catalog with a category-assignment search to export specific
  • B. Using the Site Import and Export module, export both the Site catalog and the Master catalog in a single archive.
  • C. Using the Site Import and Export module, export the Master catalog filtered by the site catalog categories to export specific products.

Answer: C

 

NEW QUESTION 99
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.baskep.shopment.beforePOST
  • D. dw.ocapi.shop.basket.shipment.beforeDELETE

Answer: B,C

Explanation:
Estos indican antes de actualizar y antes de introducir

 

NEW QUESTION 100
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. URL Request Analyzer
  • B. Request Logs
  • C. Pipeline Profiler

Answer: C

 

NEW QUESTION 101
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 102
......

Certification Topics of CCM-101 Exam PDF Recently Updated Questions: https://www.actual4exams.com/CCM-101-valid-dump.html

CCM-101 Certification Sample Questions certification Exam: https://drive.google.com/open?id=1CZIh42NqzBqQrDSTVn7e21AxzqSoe6br