| PDF + Test Engine |
|
||
| Test Engine |
|
||
|
|
Here are Salesforce B2B-Commerce-Developer PDF available features:
| 220 questions with answers | Updation Date : 16 Jul, 2026 |
| 1 day study required to pass exam | 100% Passing Assurance |
| 100% Money Back Guarantee | Free 3 Months Updates |
Which handlebars helper expression is used in Salesforce B2B Commerce pages and components to toggle the display of a block of markup?
A. {{#ifStoreSetting 'Field__c'}} ... {{/ifStoreSetting}}
B. {{#ifSetting 'Page.cfg}} ... {{/ifSetting}}
C. {{#ifConfig 'Field__c'}} ... {{/ifConfig}}
D. {{#ifDisplay 'Page.cfg'}} ... {{/ifDisplay}}
What is a method to resolve if the current storefront customer is a Salesforce B2B
Commerce guest user in an apex class?
A. ccrz.cc_CallContext.currUser.isGuest
B. ccrz.cc_CallContext.isGuest
C. UserInfo.getUserType()
D. ... UserType
Where are handlebar Templates defined in the Cloudcraze managed package?
A. uiProperties file
B. Configuration Setting configuration
C. cc_hk_UserInterface extension
D. Page Settings configuration
The sizing keys used in the Salesforce B2B Commerce Global APIs five distinct operations. What are three of these operations? (3 answers)
A. Refetch data (used on some Logic classes)
B. Return formats as Map<String, Object> or SObjects lists
C. Override static DAO classes and methods
D. Related Query to call (sub queries or direct queries)
E. Object type casting
Which three steps are necessary to have subscriberpage added to Salesforce B2B Commerce after creating a custom Visualforce page? (3 answers)
A. Create a new CC Subscriber Page record that points to your custom Visualforce page.
B. Create a new Visualforce page, and manually import the Salesforce B2BCommerceJavaScript libraries. Run in Anonymous Apexccrz.cc_util_Reflection.upsertPageUIKey([arg1],[arg2],[arg3]);
C. Refresh the Page Keys Index in CC Admin.
D. Enable the Subscriber Page in CC Admin.
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.ccAPISizing.SKIPTRZ
B. ccrz.ccAPISizing.SOBJECT
C. ccrz.ccAPI.SZ_SKIPTRZ
D. ccrz.ccAPI.SZ_SOBJECT
What is a valid way of referencing the global cc_api_CartExtentsion apex class via subscriber code?
A. ccrz__cc_api_CartExtension
B. c__cc_api_CartExtension
C. cloudcraze.cc_api_CartExtension
D. ccrz.cc_api_CartExtension
What is true regarding adding more Configuration Settings
to Salesforce B2B Commerce?
A. Metadata can be added to existing modules, but you cannot add new modules.
B. Configuration settings can only be extended through API's
C. Select "New"in your storefront's Configuration Settings and create a custom setting.
D. More modules and metadata can be added to Salesforce B2B Commerce.
What is a best practice when passing query parameters from user interface to an apex controller?
A. Query parameters should be properly sanitized by using JSINHTMLENCODE within the VisualForce Page or Component.
B. String parameters should be trimmed using String.trim().
C. Query parameters should be passed only to Salesforce B2B Commerce classes that you are extending.
D. Query parameters should be stored on a backbone model prior to passing them to the server
For which two reasons is it preferable to extend the Salesforce B2B Commerce remote
invocation object instead of using the standard Salesforce remote action invocation manager (2 answers)
A. A standard remote action will not have access to Salesforce B2B Commerce objects.
B. The APEX method called by the remote action will be passed as a Salesforce B2BCommerce context object.
C. Salesforce B2B Commerce includes do not support standard SalesForce remote actions.
D. The Salesforce B2B Commerce logger cannot be utilized in standard remote actions