Updated Nov-2021 Test Engine to Practice Test for B2B-Commerce-Developer Exam Questions and Answers! [Q36-Q52]

Share

Updated Nov-2021 Test Engine to Practice Test for B2B-Commerce-Developer Exam Questions and Answers!

Salesforce Accredited B2B Commerce Developer Certification Sample Questions and Practice Exam

NEW QUESTION 36
A new payment type for the Checkout flow has been implemented. Which three descriptors follow best practice for possible configuration metadata are needed to enable a flow? (3 answers)

  • A. Cart
  • B. *.Edit
  • C. *.pay
  • D. *.New
  • E. Checkout

Answer: B,C,D

 

NEW QUESTION 37
A query containing a subquery is executed. What is appended to the subquery name as part of its transformation by default in Salesforce B2B Commerce?

  • A. A subscriber-supplied token
  • B. "__ccrz"
  • C. The "*" symbol
  • D. The letter "S"

Answer: D

 

NEW QUESTION 38
Which three statements are true about Global API versioning? (3 answers)

  • A. Minimum API_VERSION is 1 and the Maximum API version follows the releases. E.g. The maximum was 4 as of Salesforce B2B Commerce Release-4.5, 5 as of Salesforce B2B Commerce Release 4.6, etc.
  • B. The API version is scoped at the Class API level and NOT at the method level.
  • C. Calling in with an API version set to lower than 1 will result in an exceptional case where the exception class ccrz.BelowMinAPIVersionException will be returned to callers.
  • D. Calling in with an API version set to more than current maximum will result in exception case where the exception class ccrz.ExceedsMaxAPIVersionException will be returned to callers.
  • E. There is no need to pass API_VERSION to the Global APIs, and based on the Salesforce B2B Commerce Managed Package version, Global APIs are able to figure out what version of the API to use.

Answer: A,C,D

 

NEW QUESTION 39
Witch static method invocation is used to initialize ccrz.cc_CallContext with information from ccrz.cc_RemoteActionContext and return an instance of ccrz.cc_RemoteActionResult in an apex
@RemoteAction methos?

  • A. ccrz.cc_CallContext.initCallContext(ccrz.cc_RemoteActionContext)
  • B. ccrz.cc_CallContext.initializeCallContext(ccrz.cc_RemoteActionContext)
  • C. ccrz.cc_CallContext.initRemoteActionContext(ccrz.cc_RemoteActionContext)
  • D. ccrz.cc_CallContext.init(ccrz.cc_RemoteActionContext)

Answer: D

 

NEW QUESTION 40
What are three ways to test the value of Page Label on any Salesforce B2B Commerce Community Page? (3 answers)

  • A. Execute (('PAGE_LABEL_NAME')) in the JavaScript console
  • B. Access the source HTML for the page via the browser developer tools.
  • C. Execute CCRZ.processPageLabelMap('PAGE_LABEL_NAME') in the JavaScript console.
  • D. Execute CCRZ.pagevars.pageLabels['PAGE_LABEL_NAME') in the JavaScript console.
  • E. Enable the 'display page label names' in cc admin.

Answer: C,D,E

 

NEW QUESTION 41
Which Salesforce B2B Commerce object needs to have a record added when defining a new Subscriber Pages to be rendered in a CC Page?

  • A. CC Subscriber Pages
  • B. CC Page Sections
  • C. CC Admin
  • D. CC Storefront Assosiation

Answer: A

 

NEW QUESTION 42
What is the difference between Gross Layout Overrides and Subscriber Templates?

  • A. Gross Layout Overrides allow for the modification of the footer, while Subscriber Templates allow for modification of everything inside the header and footer.
  • B. Subscriber Templates allow for modification of the header and the footer, while Gross Layout Overrides allow for modification everything inside the header and footer.
  • C. Gross Layout Overrides allow modification to CSS of a page, while Subscriber Templates allows for modification of the entire page including header and footer.
  • D. Subscriber Templates allows for modification of the header, the footer and the content in between them.
    Gross Layout Overrides only allow for modification of the header and footer.

Answer: A

 

NEW QUESTION 43
Which handlebars helper function is used on Salesforce B2B Commerce pages and components for formatting price values?

  • A. price
  • B. formatPrice
  • C. priceAbs
  • D. showprice

Answer: A

 

NEW QUESTION 44
Which three actions are applicable when modifying the number of steps required in the Salesforce Commerce Checkout flow? (3 answers)

  • A. Set the value of the configuration setting defined as CO.overrideFlow to TRUE.
  • B. Perform a template override on the Checkout page.
  • C. Add a page include to the checkout page.
  • D. Build and activate a new configuration cache setting via CC admin.
  • E. Set the value of the configuration setting defined as CO.useDef to TRUE

Answer: A,C,D

 

NEW QUESTION 45
Numerous flags when set, have a direct impact on the result set provided by the Global API's. Which conversion flag allows for sObjects to be returned from the Global API's when provided as a Boolean parameter with a value of true?

  • A. ccrz.ccAPI.SZ_SOBJECT
  • B. ccrz.ccAPISizing.SOBJECT
  • C. ccrz.ccAPISizing.SKIPTRZ
  • D. ccrz.ccAPI.SZ_SKIPTRZ

Answer: D

 

NEW QUESTION 46
What is essential for a Salesforce B2B Commerce theme to show up in the theme section in CC Admin?

  • A. The theme needs to be set as a Custom Setting in Salesforce.
  • B. The theme needs to be set in the Configuration Settings.
  • C. The theme needs to have "theme" in the name of the Static Resource.
  • D. The theme needs to be referred to in the head element on the page

Answer: C

 

NEW QUESTION 47
What are the templating, Javascript, and CSS frameworks what the cloudcraze managed package leverages?

  • A. Bootstrap, Backbonejs, and handlebarsjs
  • B. Bootstrap, Angularjs, and Backbonejs
  • C. Angularjs, react.js, and handlebarsjs
  • D. Angularjs, Backbonejs, and handlebarsjs

Answer: A

 

NEW QUESTION 48
The ccUtil apex class in Salesforce B2B Commerce provides numerous utility functions that can be leveraged in subscriber classes. Which command will return the value in the given Map if found or a default value in the event that the Map is null, empty, or an object is not found for that key?

  • A. ccrz.ccUtil.defv (Map<String.Object> mp, String key , Object ob)
  • B. ccrz.ccUtil.defaultValue(Map<String.Object> mp, String key , Object ob)
  • C. ccrz.ccUtil.defVal (Map<String.Object> mp, String key, Object ob)
  • D. ccrz.ccUtil.... (Map<String.Object> mp, String key, Object ob)

Answer: A

 

NEW QUESTION 49
A user wants to have a customized experience for adding items to the cart. The user also wants the mini cart module to reflect changes to the state of the cart afterwords. How should this requirement be fulfilled?

  • A. Trigger the global "cartChange" event and then trigger "changeMiniCart" event after the Add to Cart Action on the custom button.
  • B. Trigger the global "cartChange" event after the Add to Cart Action on the custom button.
  • C. Write a custom Remote Action to refresh the Mini Cart and refresh the Cart Line item count on the Cart Link in the header.
  • D. Leverage the Add to Cart Global API which add items to the cart and also refreshes the page with the new data.

Answer: D

 

NEW QUESTION 50
A user wants to leverage a three column layout on a page. The user also wants to move the mini-cart widget from the right to the center column. How can this requirement be fulfilled?

  • A. HandleBar Template Override
  • B. Subscriber Template
  • C. Gross Layout Override
  • D. Page Include

Answer: B

 

NEW QUESTION 51
The ccrz.cc_hk_UserInterface apex class, HTML Head Include Begin and HTML Head Include End Cloudcraze Page Include sections allow additional content to be added to the HTML <head> tag. What are two reasons that is it preferred to use the ccrz.cc_hk_UserInterface extension over the Cloudcraze Page Include sections? (2 answers)

  • A. HTML does not support <div> tags inside the <head>
  • B. Salesforce apex:include is wrapped in <span> tags.
  • C. Salesforce apex:include is wrapped in tags.
  • D. HTML does not support <span> tags inside the <head>

Answer: B,D

 

NEW QUESTION 52
......

Certification dumps Salesforce Developer B2B-Commerce-Developer guides - 100% valid: https://www.2pass4sure.com/Salesforce-Developer/B2B-Commerce-Developer-actual-exam-braindumps.html

100% Pass Your B2B-Commerce-Developer Salesforce Accredited B2B Commerce Developer at First Attempt with 2Pass4sure: https://drive.google.com/open?id=1aQDdwn6XWyOMYLtJEklWgf_t1W6UO1t2