
2022 Realistic B2B-Commerce-Developer Dumps Exam Tips Test Pdf Exam Material
Powerful B2B-Commerce-Developer PDF Dumps for B2B-Commerce-Developer Questions
NEW QUESTION 36
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 37
Salesforce B2B Commerce natively provides a robots.txt file, however, a customer can also create its own version.Which three scenarios are valid reasons for customer to create their own robots.txt file? (3 answers)
- A. The customer wants to reference a custom sitemap index.
- B. robot.txt only works if there is one storefront in the org
- C. The customer wants to reference multiple storefront sitemap indexes in a single robots.txt file
- D. The customer wants to have multiple robot.txt files in a single Salesforce Community.
- E. The customer's store is not located at the root of their domain.
Answer: A,C,E
NEW QUESTION 38
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 39
In which three different ways can a theme be enabled in
Salesforce B2B Commerce? (3 answers)
- A. Dynamically through a hook
- B. Account
- C. An Account Group field value
- D. A per user setting
- E. A Storefront setting
Answer: A,C,E
NEW QUESTION 40
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 41
Which two statements are true about Global API's in Salesforce B2B Commerce? (2 answers)
- A. Global APIs will catch any Exceptions that are thrown as part of missing parameters.
- B. Global APIs are versioned.
- C. Global APIs will handle Transaction scope, and the Subscriber calling it does not need to handle scope.
- D. Each global API method takes in a Map<String, Object> as a single parameter and returns a Map<String, Object>
Answer: B,D
NEW QUESTION 42
Numerous flags ... have a direct impact on the result set provided by the Global API's. What Global API Data-Sizing convention flag prevents an API request from propagating to further requests when provided as a Boolean parameter with a value of true?
- A. ccrz.ccAPI.SZ_REL
- B. ccrz.ccAPISizing.ASSC
- C. ccrz.ccAPISizing.REL
- D. ccrz.ccAPI.SZ_ASSC
Answer: D
NEW QUESTION 43
The sizing keys used in the Salesforce B2B Commerce Global APIs five distinct operations. What are three of these operations? (3 answers)
- A. Related Query to call (sub queries or direct queries)
- B. Refetch data (used on some Logic classes)
- C. Override static DAO classes and methods
- D. Return formats as Map<String, Object> or SObjects lists
- E. Object type casting
Answer: A,B,D
NEW QUESTION 44
Which cookie stores the effective account ID when effective account is enabled?
- A. apex__cc_anonymous_Country
- B. apex__effacc
- C. apex__currCartId
- D. apex__cclgtkn
Answer: B
NEW QUESTION 45
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 46
Which event is triggered within Salesforce B2B Commerce whenever a cart's state changes?
- A. cartChange
- B. cart
- C. pageMessage
- D. cartState
Answer: A
NEW QUESTION 47
How are variables bound when services use the ccSercviceDao class to execute queries?
- A. Global variables
- B. Apex local variables
- C. Apex class variables
- D. String substitution
Answer: C
NEW QUESTION 48
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 49
Salesforce B2B leverages global API's for encapsulating business logic into blocks that can be extended and modified by subscribers. Which three statements are true regarding extending ccServiceProduct and exposing custom fields on the Product Detail Page? (3 answers)
- A. Override the getFieldsMap method and add subscriber specific code.
- B. Create a public with sharing class that extends ccrz.ccServiceProduct.
- C. Ensure that any helper methods are defined as private and static only.
- D. Create a global with sharing class that extends ccrz.ccServiceProduct.
- E. Override the fetch method and add your subscriber specific code here.
Answer: A,D,E
NEW QUESTION 50
How do the REST APIs in Salesforce B2B Commerce support pass-through parameter handling
- A. Parameters are passed through the service handlers
- B. Parameters are separated, but unused
- C. An exception is generated for unknown API keys
- D. Parameters are filtered out before the request is processed
Answer: A
NEW QUESTION 51
Which Global JavaScript Object should be extended when
writing custom Remote Actions?
- A. CCRZ.RemoteInvocation
- B. CCRZ.
- C. CCRZ.cc_CallContext
- D. CCRZ.cc
Answer: A
NEW QUESTION 52
Which three attributes are true regarding Subscriber pages? (3 answers)
- A. Out of the Box, Subscriber Pages are completely blank HTML pages.
- B. Subscriber pages allow customers to quickly create new custom pages for their storefront.
- C. Standard Salesforce B2B Commerce components are automatically included on the page e.g. Header links, images, menu items, containers, etc.
- D. All the user interface components must be created manually.
- E. Subscriber pages can include additional standard Salesforce B2B Commerce components such as featured products, category tree, and mini cart.
Answer: B,C,E
NEW QUESTION 53
Where is the API-based record creation generally handled in Salesforce B2B Commerce?
- A. The service-layer responsible for the entity
- B. Data creation is not allowed
- C. Logic classes that implement the business logic for create operations
- D. In the methods available in extension hooks
Answer: A
NEW QUESTION 54
What are three advantages of using ccLog over the Salesforce
standard System.debug class? (3 answers)
- A. ccLog can debug syntax errors found in the JavaScript.
- B. There is no need to manually set a cookie to debug with the Site Guest User.
- C. Append #ccLog=<Logging Token Name> to the end of the storefront URL in order to get logs in the inspector console.
- D. There is no need to use string concatenation to easily tag log statements with a subject.
- E. There is no need to create a User Trace Flag.
Answer: B,D,E
NEW QUESTION 55
Which method needs to be implemented when rendering a Salesforce B2B
Commerce view in order to have it called after rendering has finished?
- A. There are no methods called on the view after rendering has finished
- B. afterRender()
- C. onRender()
- D. postRender()
Answer: D
NEW QUESTION 56
Which three pages should be enabled for the Guest user profile for a storefront to have anonymous checkout?
(3 answers)
- A. CCPaymentInfo
- B. Checkout
- C. OrderConfirmation
- D. CheckoutNew
- E. OrderView
Answer: A,C,D
NEW QUESTION 57
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. ProductMap
- B. CCCatSiteMap
- C. SizeMap
- D. CCSizeIndex
Answer: B,D
NEW QUESTION 58
......
Guaranteed Accomplishment with Newest Jan-2022 FREE : https://www.validexam.com/B2B-Commerce-Developer-latest-dumps.html
Authentic B2B-Commerce-Developer Dumps - Free PDF Questions to Pass: https://drive.google.com/open?id=1lb8EUEwJ31x3mzc09M_wBNYKaDrAXsin