| 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 |
How can the display of CC Menu Items be customized for different users?
A. cc_hk_Category extension to pre-process which category items are cached as menuitems
B. cc_hk_Menu extension to post-process any cached menu items
C. cc_hk_Menu extension to pre-process which menu items are cached
D. cc_hk_Category extension to post-process any cached menu items
Which out of the box Salesforce B2B Commerce page can give instructions to web crawlers from accessing specific Salesforce B2B Commerce pages?
A. CCCat?SiteMap
B. cc_RobotsTxT
C. CCSiteIndex
D. CCPage
How do the REST APIs in Salesforce B2B Commerce support pass-through parameter handling
A. An exception is generated for unknown API keys
B. Parameters are passed through the service handlers
C. Parameters are filtered out before the request is processed
D. Parameters are separated, but unused
Numerous flags ... have a directimpact 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.ccAPI.SZ_ASSC
C. ccrz.ccAPISizing.ASSC
D. ccrz.ccAPISizing.REL
How are variables bound when services use the ccSercviceDao classto execute queries?
A. Global variables
B. Apex local variables
C. String substitution
D. Apex class variables
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.WARN, 'D:something', 'Something unexpectedoccurred: The data we were expecting for pl was not there,')
C. crz.ccLog.log(System.LoggingLevel.DEBUG, 'D:myOrderList', myOrderList), wheremyOrderList is a list of orders
D. crz.ccLog.log(System.LoggingLevel.DEBUG, 'D:myOrder', myOrder), where myOrder isan order object
Which three statements are true about Global API versioning? (3 answers)
A. Calling in with an API version set to lower than 1 will result in an exceptional case where the exception classccrz.BelowMinAPIVersionException will be returned to callers.
B. 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.
C. The API version is scoped at the Class API level and NOT at the method level.
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 CommerceRelease 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.
Numerous flags, when set, have a direct impact on the result set provided by the
Global API's. What is the default Global API DataSizing convention flag that is used by theAPI's unless otherwise specified?
A. CCRZ.ccPAI.SZ_XL
B. CCRZ.ccPAI.SZ_M
C. CCRZ.ccPAI.SZ_L
D. CCRZ.ccPAI.SZ_S
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.defVal (Map<String.Object> mp, String key, Object ob)
C. ccrz.ccUtil.... (Map<String.Object> mp, String key, Object ob)
D. ccrz.ccUtil.defaultValue(Map<String.Object> mp, String key , Object ob)
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.init(ccrz.cc_RemoteActionContext)
B. ccrz.cc_CallContext.initCallContext(ccrz.cc_RemoteActionContext)
C. ccrz.cc_CallContext.initRemoteActionContext(ccrz.cc_RemoteActionContext)
D. ccrz.cc_CallContext.initializeCallContext(ccrz.cc_RemoteActionContext)