
正真正銘のベスト試験材料はB2B-Commerce-Developerテストエンジン練習試験合格させます
[2022年更新]B2B-Commerce-DeveloperのPDF問題、完璧に練習問題で合格
質問 39
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. Override the fetch method and add your subscriber specific code here.
- E. Create a global with sharing class that extends ccrz.ccServiceProduct.
正解: A,D,E
質問 40
How does a project implement the process to persist payment information data in the Checkout flow for Salesforce B2B Commerce version 4.2 and beyond?
- A. Trigger a remote action when the process payment button is selected to capture the payment.
- B. Trigger a remote action to store the payment information in the URL query parameters.
- C. Trigger the externalprocessedPayment and pass in the payment information object as an argument.
- D. Trigger the processPayment event and pass in the payment information object as an argument.
正解: D
質問 41
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
正解: A
質問 42
Which event is triggered within Salesforce B2B Commerce whenever a cart's state changes?
- A. cartChange
- B. pageMessage
- C. cartState
- D. cart
正解: A
質問 43
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
正解: D
質問 44
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.SOBJECT
- B. ccrz.ccAPI.SZ_SKIPTRZ
- C. ccrz.ccAPI.SZ_SOBJECT
- D. ccrz.ccAPISizing.SKIPTRZ
正解: B
質問 45
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
正解: A,B
質問 46
How do the REST APIs in Salesforce B2B Commerce support pass-through parameter handling
- A. Parameters are filtered out before the request is processed
- B. Parameters are separated, but unused
- C. An exception is generated for unknown API keys
- D. Parameters are passed through the service handlers
正解: D
質問 47
The sizing keys used in the Salesforce B2B Commerce Global APIs five distinct operations. What are three of these operations? (3 answers)
- A. Return formats as Map<String, Object> or SObjects lists
- B. Related Query to call (sub queries or direct queries)
- C. Override static DAO classes and methods
- D. Object type casting
- E. Refetch data (used on some Logic classes)
正解: A,B,E
質問 48
Which two steps are necessary to enable Salesforce B2B Commerce
logging in the managed package?
- A. Set a cookie with the Id of the user accessing the storefront in CC Admin
- B. Ensure the value saved in the Logging token field is appended to the ccLog query parameter.
- C. Turn On the Checkbox "Cloudcraze Logging" in CC Admin.
- D. Ensure you save a value in the Logging Token input field in the Global Settings section of CC Admin.
正解: B,D
質問 49
What are three advantages of using ccLog over the Salesforce
standard System.debug class? (3 answers)
- A. There is no need to create a User Trace Flag.
- B. ccLog can debug syntax errors found in the JavaScript.
- C. There is no need to use string concatenation to easily tag log statements with a subject.
- D. Append #ccLog=<Logging Token Name> to the end of the storefront URL in order to get logs in the inspector console.
- E. There is no need to manually set a cookie to debug with the Site Guest User.
正解: A,C,E
質問 50
What is default behavior for how the Salesforce B2B Commerce Global APIs transform Salesforce data?
- A. Fields names are returned using the Salesforce naming convention.
- B. Fields names are returned with a lowercase first letter, camelcase convention
- C. Fields names are returned with "c." prepended in their name.
- D. Fields names can be mapped to any naming convention desired
正解: B
質問 51
Which Global JavaScript Object should be extended when
writing custom Remote Actions?
- A. CCRZ.cc
- B. CCRZ.RemoteInvocation
- C. CCRZ.
- D. CCRZ.cc_CallContext
正解: B
質問 52
A user wants to have a Contact Us page in the storefront. This page will be a web-tolead form and it should have the header and footer, essentially the same look and feel as all the pages in the application. How can this requirement be fulfilled?
- A. Body Include Begin
- B. Page Include
- C. Subscriber Template
- D. Subscriber Page (CC Page)
正解: D
質問 53
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.ccAPISizing.ASSC
- B. ccrz.ccAPI.SZ_REL
- C. ccrz.ccAPI.SZ_ASSC
- D. ccrz.ccAPISizing.REL
正解: C
質問 54
In which three different ways can a theme be enabled in
Salesforce B2B Commerce? (3 answers)
- A. A Storefront setting
- B. Dynamically through a hook
- C. A per user setting
- D. An Account Group field value
- E. Account
正解: A,B,D
質問 55
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. None of the above
- B. Override the computePricingCart method in ccrz.cc_api_PriceAdjustoment 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. Override the computePricingReview method in ccrz.cc_CartExtension and make the callout in this method.
正解: A
質問 56
Which format is the custom Salesforce field with the API name
"My_Fiels_Name__c" transformed onto by default in Salesforce B2B Commerce?
- A. myfieldname
- B. MyFieldName
- C. myFieldName
- D. My_Field_Name__c
正解: C
質問 57
Which event is invoked by any CCRZ Salesforce B2B CommeceView after the view is rendered?
- A. view:*:rendered
- B. view:*:refresh
- C. view:*:load
- D. view:*:onload
正解: B
質問 58
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. CCPage
- C. cc_RobotsTxT
- D. CCSiteIndex
正解: C
質問 59
Which method is used to override when extending the Salesforce B2B Commerce logic providers?
- A. doAction
- B. process
- C. fetch
- D. doLogic
正解: B
質問 60
......
ベスト最新資料はB2B-Commerce-Developerオンライン練習試験:https://www.goshiken.com/Salesforce/B2B-Commerce-Developer-mondaishu.html
リアル練習B2B-Commerce-Developer Salesforce Accredited B2B Commerce Developer試験知能問題集:https://drive.google.com/open?id=11_-SFsYKS_05rIPgNKP75ZGYRgoDzCA3