
Brilliant B2B-Commerce-Developer Exam Dumps Get B2B-Commerce-Developer Dumps PDF
B2B-Commerce-Developer Dumps PDF - B2B-Commerce-Developer Real Exam Questions Answers
NEW QUESTION 17
What is true regarding adding more Configuration Settings
to Salesforce B2B Commerce?
- A. More modules and metadata can be added to Salesforce B2B Commerce.
- B. Select "New" in your storefront's Configuration Settings and create a custom setting.
- C. Metadata can be added to existing modules, but you cannot add new modules.
- D. Configuration settings can only be extended through API's
Answer: A
NEW QUESTION 18
Which event should be triggered when user facing info, warning or error messages need to be displayed on a Visualforce page?
- A. displayPageMessage
- B. displayMessage
- C. showMessage
- D. pageMessage
Answer: D
NEW QUESTION 19
Which two statements are true about Global API's in Salesforce B2B Commerce? (2 answers)
- A. Each global API method takes in a Map<String, Object> as a single parameter and returns a Map<String, Object>
- B. Global APIs will catch any Exceptions that are thrown as part of missing parameters.
- C. Global APIs are versioned.
- D. Global APIs will handle Transaction scope, and the Subscriber calling it does not need to handle scope.
Answer: A,C
NEW QUESTION 20
Which three steps are necessary to have subscriber page added to Salesforce B2B Commerce after creating a custom Visualforce page? (3 answers)
- A. Enable the Subscriber Page in CC Admin.
- B. Refresh the Page Keys Index in CC Admin.
- C. Create a new Visualforce page, and manually import the Salesforce B2B Commerce JavaScript libraries.
Run in Anonymous Apex ccrz.cc_util_Reflection.upsertPageUIKey([arg1],[arg2],[arg3]); - D. Create a new CC Subscriber Page record that points to your custom Visualforce page.
Answer: A,B,D
NEW QUESTION 21
What is a method to resolve if the current storefront customer is a Salesforce B2B Commerce guest user in an apex class?
- A. UserInfo.getUserType()
- B. ccrz.cc_CallContext.isGuest
- C. ccrz.cc_CallContext.currUser.isGuest
- D. ... UserType
Answer: B
NEW QUESTION 22
Which two usages of ccLog should be avoided in Salesforce B2B Commerce? (2 answers)
- A. ccrz.ccLog.log(System.LoggingLevel.ERROR, 'D:something', myCallToGetMessage(pl) ), where myCallToGetMessage(pl) is a method invocation
- B. crz.ccLog.log(System.LoggingLevel.DEBUG, 'D:myOrder', myOrder), where myOrder is an order object
- C. crz.ccLog.log(System.LoggingLevel.WARN, 'D:something', 'Something unexpected occurred: The data we were expecting for pl was not there,')
- D. crz.ccLog.log(System.LoggingLevel.DEBUG, 'D:myOrderList', myOrderList), where myOrderList is a list of orders
Answer: A,C
NEW QUESTION 23
Which three pages should be enabled for the Guest user profile for a storefront to have anonymous checkout?
(3 answers)
- A. CheckoutNew
- B. OrderConfirmation
- C. OrderView
- D. CCPaymentInfo
- E. Checkout
Answer: A,B,D
NEW QUESTION 24
Which cookie stores the effective account ID when effective account is enabled?
- A. apex__cc_anonymous_Country
- B. apex__currCartId
- C. apex__cclgtkn
- D. apex__effacc
Answer: D
NEW QUESTION 25
Why is the use of a standard Visualforce control such as apex:form discouraged in Salesforce B2B Commerce page includes and subscriber pages?
- A. Javascript events are not supported within an apex:form control
- B. Visualforce "scopes" controls that are present on a page and scope of the control will be set to "ccrz"
- C. Apex:form render DOM components slowly
- D. The CCRZ Javascript object is not accessible within an apex:form control.
Answer: B
NEW QUESTION 26
Which format is the custom Salesforce relationship with the API name,
"My_Relationship_Name__r.My_Name__c" queried and transformed into dy default in Salesforce B2B Commerce?
- A. myrelationshipname.myname: value
- B. My_Relationship_Name__r.My_Name__c: value
- C. myRelationshipName.myName: value
- D. myRelationshipNameR=>(myName: value)
Answer: D
NEW QUESTION 27
What is a valid way of referencing the CC Cart Object whose API name is E_Cart__c in a SOQL query?
- A. _Cart__c
- B. c.E_Cart__c
- C. cloudcraze__E_Cart__c
- D. ccrz__E_Cart__c
Answer: D
NEW QUESTION 28
What two kinds of queries do the methods in Salesforce B2B Commerce services perform by default? (2 answers)
- A. SOQL
- B. SOSL
- C. SQL
- D. Schema-less queries
Answer: A,B
NEW QUESTION 29
What is a best practice when passing query parameters from user interface to an apex controller?
- A. String parameters should be trimmed using String.trim().
- B. Query parameters should be properly sanitized by using JSINHTMLENCODE within the VisualForce Page or Component.
- C. Query parameters should be stored on a backbone model prior to passing them to the server
- D. Query parameters should be passed only to Salesforce B2B Commerce classes that you are extending.
Answer: B
NEW QUESTION 30
Which method signature is used in the Global API's?
- A. List<List<Object>>
- B. Changes based on API and Method name
- C. ccrz.cc_Output (ccrz:cc_Input input)
- D. Map<String, Object>
Answer: D
NEW QUESTION 31
Which handlebars helper expression is used in Salesforce B2B Commerce pages and components to toggle the display of a block of markup?
- A. {{#ifSetting 'Page.cfg}} ... {{/ifSetting}}
- B. {{#ifStoreSetting 'Field__c'}} ... {{/ifStoreSetting}}
- C. {{#ifDisplay 'Page.cfg'}} ... {{/ifDisplay}}
- D. {{#ifConfig 'Field__c'}} ... {{/ifConfig}}
Answer: C
NEW QUESTION 32
Which three actions are applicable when modifying the number of steps required in the Salesforce Commerce Checkout flow? (3 answers)
- A. Perform a template override on the Checkout page.
- B. Set the value of the configuration setting defined as CO.useDef to TRUE
- C. Build and activate a new configuration cache setting via CC admin.
- D. Set the value of the configuration setting defined as CO.overrideFlow to TRUE.
- E. Add a page include to the checkout page.
Answer: C,D,E
NEW QUESTION 33
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, Backbonejs, and handlebarsjs
- D. Angularjs, react.js, and handlebarsjs
Answer: A
NEW QUESTION 34
What is a valid way of referencing the global cc_api_CartExtentsion apex class via subscriber code?
- A. c__cc_api_CartExtension
- B. cloudcraze.cc_api_CartExtension
- C. ccrz__cc_api_CartExtension
- D. ccrz.cc_api_CartExtension
Answer: D
NEW QUESTION 35
Which three attributes are true regarding Subscriber pages? (3 answers)
- A. Out of the Box, Subscriber Pages are completely blank HTML pages.
- B. All the user interface components must be created manually.
- C. Standard Salesforce B2B Commerce components are automatically included on the page e.g. Header links, images, menu items, containers, etc.
- D. Subscriber pages can include additional standard Salesforce B2B Commerce components such as featured products, category tree, and mini cart.
- E. Subscriber pages allow customers to quickly create new custom pages for their storefront.
Answer: C,D,E
NEW QUESTION 36
In which three ways can Salesforce B2B Commerce API sizing blocks support multiple API sizing requests? (3 answers)
- A. When different entities are specified in the method invocation.
- B. SZ_ASSC is used.
- C. The sizing block is removed after the first handler.
- D. The sizing block is not removed.
- E. SZ_ASSC is not used.
Answer: A,C,E
NEW QUESTION 37
......
Salesforce B2B-Commerce-Developer Exam Syllabus Topics:
| Topic | Details |
|---|---|
| Topic 1 |
|
| Topic 2 |
|
| Topic 3 |
|
| Topic 4 |
|
Valid B2B-Commerce-Developer Test Answers & Salesforce B2B-Commerce-Developer Exam PDF: https://www.dumptorrent.com/B2B-Commerce-Developer-braindumps-torrent.html
Realistic B2B-Commerce-Developer Exam Dumps with Accurate & Updated Questions: https://drive.google.com/open?id=1fL2foqEd743hID_Di10KMb5Ozx7tASZO