Exam Questions and Answers for B2B-Commerce-Developer Study Guide Questions and Answers! [Q48-Q63]

Share

Exam Questions and Answers for  B2B-Commerce-Developer Study Guide Questions and Answers!

Salesforce Accredited B2B Commerce Developer Certification Sample Questions and Practice Exam

NEW QUESTION 48
A configuration value, CO.NewOrder, is set to TRUE. What is one way of
preventing an existing payment page from being shown on the checkout payment page?

  • A. Override the front end template and modify the way the embedded payment page gets loaded from the payment list configuration.
  • B. Delete the Visualforce page from the code base.
  • C. Remove the payment type associated with the payment page from CO.pmts, then rebuild and activate a new cache.
  • D. Remove the value matching the page name from the pmt.whitelist configuration setting, then rebuild and activate a new Configuration cache

Answer: D

 

NEW QUESTION 49
Which three attributes are true regarding Subscriber pages? (3 answers)

  • A. Standard Salesforce B2B Commerce components are automatically included on the page e.g. Header links, images, menu items, containers, etc.
  • B. Out of the Box, Subscriber Pages are completely blank HTML pages.
  • C. Subscriber pages can include additional standard Salesforce B2B Commerce components such as featured products, category tree, and mini cart.
  • D. Subscriber pages allow customers to quickly create new custom pages for their storefront.
  • E. All the user interface components must be created manually.

Answer: A,C,D

 

NEW QUESTION 50
Which two Salesforce B2B Commerce visualforce pages must be enabled at a Salesforce Community level to make the out of the box SEO functionality available? (2 answers)

  • A. SizeMap
  • B. CCCatSiteMap
  • C. CCSizeIndex
  • D. ProductMap

Answer: B,C

 

NEW QUESTION 51
What is a valid way of referencing the global cc_api_CartExtentsion apex class via subscriber code?

  • A. cloudcraze.cc_api_CartExtension
  • B. ccrz__cc_api_CartExtension
  • C. ccrz.cc_api_CartExtension
  • D. c__cc_api_CartExtension

Answer: C

 

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

  • A. 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.
  • 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. 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.
  • E. 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.

Answer: C,D,E

 

NEW QUESTION 53
A Developer created a custom field that a project wants to expose on a given page.
How does the Developer ensure that the field is available to display on a given page?

  • A. Create a new Service Class that the page uses and update the Service Management in CCAdmin for the given storefront to use this new Service Class
  • B. Create a new Logic Class that the page uses and update the Service Management in CCAdmin for the given storefront to use this new Service Class
  • C. Override the Service Class that the page uses and update the Service Management in CCAdmin for the given storefront to use this new Service Class.
  • D. Override the Logic Class that the page uses and update the Service Management in CCAdmin for the given storefront to use this new Service Class

Answer: C

 

NEW QUESTION 54
A user wants the pricing to reflect the price values stored in an external ERP during the checkout flow. In what way can this requirement be satisfied?

  • A. Override the computePricingCart method in ccrz.cc_api_PriceAdjustoment and make the callout in this method.
  • B. Override the computePricingReview method in ccrz.cc_CartExtension and make the callout in this method.
  • C. Override the computePricingCart methos in ccrz.cc_api_CartExtension and make the callout in this method.
  • D. None of the above

Answer: D

 

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

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

Answer: A

 

NEW QUESTION 56
In which three ways should useful debugging information in Salesforce B2B Commerce implementation be garnered? (3 answers) A) Enabling the logging token via

  • A. Logging a case with Salesforce support to enable advanced debugging options.
  • B. Placing a System.debug() statement anywhere in the class being debugged.
  • C. Enabling debugging options for the current user and visually inspecting the Salesforce debug logs.
  • D. Admin and subsequently inspecting the logs via the browser console.
  • E. Logging into the community as a system administrator to identify any potential permissions or Visualforce exceptions.

Answer: B,C,D

 

NEW QUESTION 57
Which method needs to be implemented when rendering a Salesforce B2B
Commerce view in order to have it called after rendering has finished?

  • A. onRender()
  • B. postRender()
  • C. afterRender()
  • D. There are no methods called on the view after rendering has finished

Answer: B

 

NEW QUESTION 58
What are three ways to implement custom post Order processing? (3 answers)

  • A. Use cc_hk_Order.placeTarget to define a new Order Confirmation page which executes additional business logic.
  • B. Use a Salesforce workflow rule that executes when an Order record is created.
  • C. Extend cc_hk_invoice to handle custom business logic post Order processing
  • D. Use Process builder to implement business processes that execute when an Order record is created.
  • E. Modify or add custom Cart formula fields to handle logic.

Answer: A,B,D

 

NEW QUESTION 59
Which cookie stores the effective account ID when effective account is enabled?

  • A. apex__cc_anonymous_Country
  • B. apex__cclgtkn
  • C. apex__effacc
  • D. apex__currCartId

Answer: C

 

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

  • A. Subscriber Templates allow for modification of the header and the footer, while Gross Layout Overrides allow for modification everything inside the header and footer.
  • B. Gross Layout Overrides allow for the modification of the footer, while Subscriber Templates allow for modification of everything inside the header and footer.
  • C. 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.
  • D. Gross Layout Overrides allow modification to CSS of a page, while Subscriber Templates allows for modification of the entire page including header and footer.

Answer: B

 

NEW QUESTION 61
What are three advantages of using ccLog over the Salesforce
standard System.debug class? (3 answers)

  • A. Append #ccLog=<Logging Token Name> to the end of the storefront URL in order to get logs in the inspector console.
  • B. ccLog can debug syntax errors found in the JavaScript.
  • C. There is no need to create a User Trace Flag.
  • D. There is no need to manually set a cookie to debug with the Site Guest User.
  • E. There is no need to use string concatenation to easily tag log statements with a subject.

Answer: C,D,E

 

NEW QUESTION 62
How can the display of CC Menu Items be customized for different users?

  • A. cc_hk_Menu extension to pre-process which menu items are cached
  • B. cc_hk_Category extension to pre-process which category items are cached as menu items
  • C. cc_hk_Menu extension to post-process any cached menu items
  • D. cc_hk_Category extension to post-process any cached menu items

Answer: C

 

NEW QUESTION 63
......

B2B-Commerce-Developer certification dumps - Salesforce Developer B2B-Commerce-Developer guides - 100% valid: https://www.actualtests4sure.com/B2B-Commerce-Developer-test-questions.html

100% Pass Your B2B-Commerce-Developer at First Attempt with Actualtests4sure: https://drive.google.com/open?id=13BviV6SeO-U0-py9WlXfsnzeL_0b5_jF