لا تريد أن تفوت شيئا؟

نصائح اجتياز امتحان الشهادة

آخر أخبار الامتحانات ومعلومات الخصم

برعاية وحديثة من قبل خبرائنا

نعم، أرسل لي النشرة الإخبارية

خذ اختبارات أخرى عبر الإنترنت

السؤال #1
In which three ways should useful debugging information in Salesforce B2B Commerce implementation be garnered? (3 answers) A) Enabling the logging token via
A. Admin andsubsequently inspecting the logs via the browser console
B. Logging a case with Salesforce support to enable advanced debugging options
C. Enabling debugging options for the current user and visually inspecting the Salesforce debug logs
D. Placing a System
E. Logging into the community as a system administrator to identify any potential permissions or Visualforce exceptions
عرض الإجابة
اجابة صحيحة: ACE
السؤال #2
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 handlerscorrect
C. Parameters are filtered out before the request is processed
D. Parameters are separated, but unused
عرض الإجابة
اجابة صحيحة: B
السؤال #3
How are variables bound when services use the ccSercviceDao classto execute queries?
A. Global variables
B. Apex local variables
C. String substitutioncorrect
D. Apex class variables
عرض الإجابة
اجابة صحيحة: C
السؤال #4
What are three ways to test the value of Page Label on any Salesforce B2B Commerce Community Page? (3 answers)
A. Access the source HTML for the page viathe browser developer tools
B. Execute CCRcorrect
C. pagevars
D. Execute CCRcorrect
E. processPageLabelMap('PAGE_LABEL_NAME') in the JavaScript console
F. Enable the 'display page label names' in cc admin
G. Execute (('PAGE_LABEL_NAME')) in the JavaScript console
عرض الإجابة
اجابة صحيحة: ABCD
السؤال #5
What is a method to resolve if the current storefront customer is a Salesforce B2B Commerce guest user in an apex class?
A. ccrz
B. ccrz
C. UserInfo
D.
عرض الإجابة
اجابة صحيحة: B
السؤال #6
A configuration value, CO.NewOrder, is set to TRUE. What is one way of preventing anexisting payment page from being shown on the checkout payment page?
A. Delete the Visualforce page from the code base
B. Remove the value matching the page name from the pmt
C. Remove the payment type associated with the payment page from Ccorrect
D. pmts, thenrebuild and activate a new cache
E. Override the front end template and modify the way the embedded payment page getsloaded from the payment list configuration
عرض الإجابة
اجابة صحيحة: C
السؤال #7
Inwhich three different ways can a theme be enabled in Salesforce B2B Commerce? (3 answers)
A. A Storefront settingcorrect
B. An Account Group field valuecorrect
C. A per user setting
D. Account
E. Dynamically through a hookcorrect
عرض الإجابة
اجابة صحيحة: ABE
السؤال #8
What are three advantages of using ccLog over the Salesforce standard System.debug class? (3 answers)
A. There is no need to use string concatenation to easily tag log statements with a subject
B. ccLog can debug syntax errors found in the JavaScript
C. There is no need to create a User Trace Flag
D. Append #ccLog= 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
عرض الإجابة
اجابة صحيحة: ADE
السؤال #9
Where is the API-based record creation generally handled in Salesforce B2B Commerce?
A. In the methods available in extension hooks
B. The service-layer responsible for the entitycorrect
C. Data creation is not allowed
D. Logic classes that implement the businesslogic for create operations
عرض الإجابة
اجابة صحيحة: B
السؤال #10
What are two advantages of using the Lightning Data Service? (Choose two.)
A. It provides caching
B. It synchronizes data shared by other base components
C. It converts between different data formats
D. It communicates with other components
عرض الإجابة
اجابة صحيحة: AB
السؤال #11
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. *
B. Cart
C. Checkout
D. *
E. *
عرض الإجابة
اجابة صحيحة: ADE
السؤال #12
What are three ways to implement custom post Order processing? (3 answers)
A. Use a Salesforce workflow rule that executes when an Order record is created
B. Extend cc_hk_invoice tohandle custom business logic post Order processingcorrect
C. Use cc_hk_Order
D. Modify or add custom Cart formula fields to handle logic
E. Use Process builder to implement business processes that execute when an Order record is created
عرض الإجابة
اجابة صحيحة: ABCE
السؤال #13
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. Leverage the Addto Cart Global API which add items to the cart and also refreshes the page with the new data
B. Trigger the global ?cartChange" event and then trigger ?changeMiniCart" 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. Trigger the global ?cartChange" event after the Add to Cart Action on the custom button
عرض الإجابة
اجابة صحيحة: D
السؤال #14
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
B. ccrz
C. ccrz
D. ccrz
عرض الإجابة
اجابة صحيحة: B
السؤال #15
The ccrz.cc_hk_UserInterface apex class, HTMLHead Include Begin and HTML Head Include End Cloudcraze Page Include sections allow additional content to be added to the HTML 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. Salesforce apex:include is wrapped in tags
B. HTML does not support
tags inside the
C. Salesforce apex:include is wrapped in tags
D. HTML does not support tags inside the correct
عرض الإجابة
اجابة صحيحة: AD
السؤال #16
What are two guidelines for logging that are used within the core Salesforce B2B Commerce product? (2 answers)
A. Items or data within computational intensive loops shouldbe logged
B. The close method of ccrz
C. No calls to ccrz
D. It is okay to log any data on the server that is already logged on the client side
عرض الإجابة
اجابة صحيحة: ABC
السؤال #17
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 multiple storefront sitemap indexes in a single robots
B. The customer wants to reference a custom sitemap index
C. The customer wants to have multiple robot
D. The customer's store is not located at the rootof their domain
E. robot
عرض الإجابة
اجابة صحيحة: ABD
السؤال #18
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"correct
C. The "*" symbol
D. The letter "S"
عرض الإجابة
اجابة صحيحة: B
السؤال #19
A Developer created a custom field that a project wants to expose on a given page. How does the Developer ensure that the field is available to display on a given page?
A. Override the Service Class that the page uses and update the ServiceManagementin CCAdmin for the given storefront to use this new Service Class
B. Override the Logic Class that the page uses and update the Service Management inCCAdmin for the given storefront to use this new Service Class
C. Create a new Service Classthat the page uses and update the Service Managementin CCAdmin for the given storefront to use this new Service Class
D. Create a new Logic Class that the page uses and update the Service Managementin CCAdmin for the given storefront to use this new Service Class
عرض الإجابة
اجابة صحيحة: A
السؤال #20
How are version related upgrades passed on to subscriber API extensions/overrides?
A. APIs callback with specific versions specified; the user must know which version number to use
B. Copy and paste of specific code is "built-in"
C. Extensions and overridden APIs don't support-related upgrades
D. The "delegate" allows inherited method calls access to the most recentlyspecified service versioncorrect
عرض الإجابة
اجابة صحيحة: D
السؤال #21
A developer is trying to troubleshoot why a field is not displaying on the Product Detail Page. What should be typed in the Developer Tools Console in the browser to view the fields available for the Product Detail Page?
A. CCR
B. productSearchView
C. CCRcorrect
D. cartView
E. CCR
F. productDetailModel
G. CCR
H. productDetailView
عرض الإجابة
اجابة صحيحة: C
السؤال #22
A Developer created a custom field that a project wants to expose on a given page. How does the Developer ensure that the field is available to display on a given page?
A. Override the Service Class that the page uses and update the ServiceManagementin CCAdmin for the given storefront to use this new Service Class
B. Override the Logic Class that the page uses and update the Service Management inCCAdmin for the given storefront to use this new Service Class
C. Create a new Service Classthat the page uses and update the Service Managementin CCAdmin for the given storefront to use this new Service Class
D. Create a new Logic Class that the page uses and update the Service Managementin CCAdmin for the given storefront to use this new Service Class
عرض الإجابة
اجابة صحيحة: A
السؤال #23
When a user buys 10 units of product B, the user wants 1 unit of Product A to be automatically added to the cart. How can this requirement be fulfilled?
A. Override the AllowCheckout method in ccrz
B. Override the prepareForSave method in ccrz
C. Override the preprocess method in ccrz
D. Override the prepareToAdd method in ccrz
عرض الإجابة
اجابة صحيحة: D
السؤال #24
How can a developer bring in a checkout flow step to another sequence order?
A. Reorder step in checkoutSteps
B. drag and drop subflows in main checkout flow
C. drag and drop checkout Screens in main checkout flow
D. Adjust next-state in previous subflow configuration
عرض الإجابة
اجابة صحيحة: A
السؤال #25
How is a price group dynamically set?
A. By overriding the ccLogicProductPrice class
B. By using contract pricing
C. By extending the ccApiPriceList API
D. By extending the cc_hk_priceing hookcorrect
عرض الإجابة
اجابة صحيحة: D
السؤال #26
How does a project implement the process to persist payment information datain 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 processPayment event and pass in the payment information object as an argument
D. Trigger the externalprocessedPayment and pass in the payment information object as an argument
عرض الإجابة
اجابة صحيحة: C
السؤال #27
A configuration value, CO.NewOrder, is set to TRUE. What is one way of preventing anexisting payment page from being shown on the checkout payment page?
A. Delete the Visualforce page from the code base
B. Remove the value matching the page name from the pmt
C. Remove the payment type associated with the payment page from Ccorrect
D. pmts, thenrebuild and activate a new cache
E. Override the front end template and modify the way the embedded payment page getsloaded from the payment list configuration
عرض الإجابة
اجابة صحيحة: C
السؤال #28
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)correct
B. Return formats as Map or SObjects lists
C. Override static DAO classes and methods
D. Related Query to call (sub queries or direct queries)correct
E. Object type castingcorrect
عرض الإجابة
اجابة صحيحة: ADE
السؤال #29
What are the templating, Javascript, and CSS frameworks what the cloudcraze managed package leverages?
A. Angularjs, Backbonejs, and handlebarsjs
B. Bootstrap, Backbonejs, and handlebarsjscorrect
C. Bootstrap, Angularjs, and Backbonejs
D. Angularjs, react
عرض الإجابة
اجابة صحيحة: B
السؤال #30
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"correct
C. The "*" symbol
D. The letter "S"
عرض الإجابة
اجابة صحيحة: B

View The Updated Salesforce Exam Questions

SPOTO Provides 100% Real Salesforce Exam Questions for You to Pass Your Salesforce Exam!

عرض الإجابات بعد التقديم

يرجى إرسال البريد الإلكتروني الخاص بك والواتس اب للحصول على إجابات الأسئلة.

ملحوظة: يرجى التأكد من صلاحية معرف البريد الإلكتروني وWhatsApp حتى تتمكن من الحصول على نتائج الاختبار الصحيحة.

بريد إلكتروني:
رقم الواتس اب/الهاتف: