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

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

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

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

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

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

السؤال #1
A developer created a basic SFRA form to capture the customer's first name, last name, and email address and render it on the next page. The developer is able to see all form elements and is able to enter information and submit. However, the developer notices that the submitted information is not getting rendered on the Storefront.Which two mistakes might cause this issue? (Choose two.)
A. The actionUrl does not have any form action set
B. The form object is not passed to the rendering template
C. The form definition is incorrect
D. The form does not pass all validations
عرض الإجابة
اجابة صحيحة: BC
السؤال #2
Given the sandbox with:1. Service configured and assigned to its profile and credential 2. A code version that uses that service And given the requirement to limit the number of success or error calls the code can perform to a restricted number of calls per second.Which configuration should the developer perform?
A. Set the service as limited and change the services profile site preferences with the required values
B. Set a new quota limit for the service profile with the required values
C. Set the rate limiter in the service profile and configure its values with the ones required
D. Set a new quota limit for the service profile and assign the service to it
عرض الإجابة
اجابة صحيحة: A
السؤال #3
A developer uses the call() instance method of dw.svc.Service to invoke a web service and implemented the callback methods defined by the dw.svc.ServiceCallback class. Which callback method is required only when invoking a SOAP service?
A. initServiceClient
B. parseResponse
C. mockCall
D. createRequest
عرض الإجابة
اجابة صحيحة: A
السؤال #4
A Digital Developer has detected storefront pages being rendered with an error message. After inspecting the log files, the Developer discovered that an enforced quota is being exceeded. What action should the Developer take to stop the quota violation?
A. Change the Business Manager configuration for the quota settings
B. Ask support to remove the quota limit
C. Rewrite the code that is causing the overage
D. Take no action, the overage will be resolved when concurrent visitors are reduced
عرض الإجابة
اجابة صحيحة: A
السؤال #5
A merchant wants customers to be able to order gift vouchers via their site. Since they can issue an unlimited number of these digital vouchers, this item should be available to sell at all times. How can a developer use Business Manager to ensure that the gift vouchers are always available?
A. Manually set the inventory to a high number
B. Check the Available to Sell (ATS) flag for the product set
C. Check the perpetual flag in the product inventory record
D. Set StockLevel = maxAllocation for the product
عرض الإجابة
اجابة صحيحة: D
السؤال #6
A developer is tasked with implementing the necessary code for a new Page Designer component.What are the two purposes of the JSON metadata definition file that the developer creates? (Choose two.)
A. Defines the responsive layout of the rendered template
B. Defines regions within the component type
C. Defines the attributes that a merchant enters when using the component type
D. Defines the business and rendering logic of the component required by the merchant
عرض الإجابة
اجابة صحيحة: BC
السؤال #7
Address verification call, which contains the token and the address to verify in a POST request. Once the token is obtained, it is valid for hours and it is not needed to request a new one for subsequent address verification calls, the AVS charges for every request made no matter if it is client authentication call or address verification call. Which three strategies could be applied to allow for efficient use of the service without compromising security? Choose 3 answers
A. Apply page caching to the client authentication controller that is used with AJAcorrect
B. Obtain the token from local storage of the browser and update it once It expires
C. Obtain the token from a custom cache before making the client authentication call
D. Use HTTPService caching for the client authentication call
E. Use a job to store and update the token in a custom object that is used from the storefront code
عرض الإجابة
اجابة صحيحة: ABC
السؤال #8
Given a sandbox with an active slot configuration with the following specifications: * Content type set to product * With someproduct configured * With the following rendering template: slots/product/product_1x2 isml * Correctly enabled and scheduled And given the code contained in the selected rendering template: Is an additional action needed for this to work asintended?
A. No - The content slot is rendered correctly
B. Yes - The isloop should be removed because no loops are allowed in a content slot rendering template
C. Yes - The content needs to be configured with a recommender to display products
عرض الإجابة
اجابة صحيحة: A
السؤال #9
The following promotions are configured with no exclusivity (can be combined with any other promotion) in a -1month campaign: * Free correct- in -store shipping * 20% accessories products discount, applies for all customers * $5 off coupon based discount, sent to a selected group of customers The combination of above promotions allows customers to get 16 socks for free in store. This was unintended, and the Client If considering disabling the coupon. The Client is concerned about a potential spike in the nu
A. Disable the coupon code
B. Disable the coupon code
C. Disable the coupon code
D. Disable the coupon code
عرض الإجابة
اجابة صحيحة: D
السؤال #10
A custom cartridge that seemed to be performing well in a sandbox has been installed in production. The production instance is showing increased page load times that seem to be related to the new custom code. What can a developer do to quickly track down the potential problem?
A. Use the Code Profiler in production instance
B. Use the Code Profiler in production instance
C. Use the Code Profiler in a sandbox instance
عرض الإجابة
اجابة صحيحة: A
السؤال #11
Given the requirements:1.to integrate with an external web service using HTTP requests. 2.to create a service for this purpose with the Service framework using the LocalServiceRegistry class. 3.to test the service before the external service provider makes the API available.Which solution allows the developer to satisfy the requirements?
A. Create a service and a Sitepreference that induce the service to respond with a mock response using a conditional
B. Create a service and implement the mockFull callback and set the service mode to mock
C. Create a service and implement the mockFull callback and a sitepreference to enable or disable the mock response
D. Create two services, one mock and the real one, and a Sitepreference that enable the mock or the real one
عرض الإجابة
اجابة صحيحة: C
السؤال #12
A Newsletter controller contains the following route:Assuming the Custom Object metadata exists, why does this route fail to persist the data submitted in the form beyond the template render lifecycle?
A. Custom Objects can only be created by Job scripts
B. The Custom Object creation is not wrapped in a Transaction
C. The CustomObjectMgr variable should be declared outside of the route
D. The Subscribe route is missing the server
عرض الإجابة
اجابة صحيحة: B
السؤال #13
To ensure SFRA best practices and protect against request forgery, the developer introduced CSRF token generation in the customer address form.to implement CSRF protection when the form is submitted, the developer needs to introduce the CSRF validation using one or both of these methods as applicable:1. validateRequest 2. validateAjaxRequestWhere in the code does the developer need to add this CSRF validation check?
A. In the middleware chain of the controller post route
B. In the controller function that displays the form
C. In the model function that persists the form data
D. In the view function that handles the submitted form
عرض الإجابة
اجابة صحيحة: A
السؤال #14
A B2C Commerce developer has recently completed a tax service link cartridge integration into a new SHU site. During review, the Architect notices the basket calculation hook is being run multiple times during a single tax call. What is the reason for the duplicate calculations being run?
A. The tax cat is being called multiple times
B. The checkout is designed to recursively refer to the same hook
C. The LINK cartridge Is Included multiple times in the cartridge path
D. There are multiple hook
عرض الإجابة
اجابة صحيحة: A
السؤال #15
A company that is a shoe-producer is doing Salesforce B2C Commerce implementation. In their Enterprise Resource Warning (ERP) system, the products are marked as being one of three types: boots, sandals, and sneakers. The business requirements based on the type are: ? The messaging on Product Detail page is different ? Customers are able to filler their Product Search Results The customer's operations team asks about the format in which to send this value in the catalog. Which data type should the Architect
A. A custom attribute of type string containing comma separated values
B. A custom attribute type set-of-string containing multiple values
C. A custom attribute of type enum-of-string (multiselect able value)
D. A custom attribute of type enum-of-string (single selectable value)correct
عرض الإجابة
اجابة صحيحة: D
السؤال #16
The Client has requested an Architect’s help in documenting the architectural approach to a new home page. The requirements provided by the business are: ? Multiple areas of static image content, some may need text shown at well ? The content page must be Realizable ? A carousel of featured products must be shown below a banner 101191 ? Recommended categories will be featured based on the time of year Which two solutions would fulfil these requirements? Choose 2 answers
A. Leverage B2C Commerce Content Management Servicecorrect
B. Leverage B2C Commerce locales in Business Manager
C. Leverage B2C Commerce content slots and assetscorrect
D. Leverage B2C Commerce Page Designer with a dynamic layout
عرض الإجابة
اجابة صحيحة: ACD
السؤال #17
The Client wants to have a flash sate on a few products every day. These products are sold through B2C Commerce as well as an in store Point of Sale system that it tied to the same inventory. An Architect analyzes the following proposed solution: Inventory feed w*l continue to run daily but add a web-service call to compare and update B2C Commerce inventory in real time during checkout after a flash product's inventory reaches a threshold. Which two risks should the Architect communicate to the Client about
A. The default rate limiter configuration for the web-service could cause the web-service to return an exception during high traffic
B. If the externals hosted web-service is unreliable
C. If the product Inventory threshold that triggers the web service calls is reached too often
D. Because the job would still be configured to run daily there will be a degrade in performance during non-flash sales periods
عرض الإجابة
اجابة صحيحة: ABC
السؤال #18
A developer is remotely fetching the reviews for a product. Assume that it's an HTTP GET request and caching needs to be implemented, what consideration should the developer keep in mind for building the caching strategy?
A. Cache the HTTP service requestcorrect
B. Remote include with caching only the reviews
C. Use custom cache
D. Cached remote include with cache of the HTTP service
عرض الإجابة
اجابة صحيحة: A
السؤال #19
Given a job step configured in the steptype.json that calls a script module, a developer needs to add a custom status code "NO_FILES_FOUND" in the script. The status does not represent an error condition. Which code snippet completes this requirement?
A. var Status = require (`dw/system/Status'); return new Status (Status
B. this
C. return `NO_FILES_FOUND';
D. var status = {success: `OK', message: `NO_FILES_FOUND'}; return status;
عرض الإجابة
اجابة صحيحة: A
السؤال #20
A developer needs to perform the same additional checks before completing multiple routes in a custom controller, in order to decide whether to render a template or redirect the user to a different page.According to SFRA best practices, what is the correct approach to improve code reusability in this scenario7
A. Define a new middleware function and use it in the existing routes
B. Append a new function to all the existing routes with the server module
C. Replace the existing routes by creating a controller in separate new cartridge
D. Use the superModule property in the existing routes to extend their functionality
عرض الإجابة
اجابة صحيحة: A
السؤال #21
Universal Containers created a site export file from staging in the global export directory. How should the Digital Developer update their sandbox using this staging site export file?
A. Perform a data replication from staging
B. Use the Site Development > Site Import & Export Business Manager module
C. Download the site export file and use UX Studio to transfer the data to the sandbox
D. Use the Site Development > Import & Export Business Manager module
عرض الإجابة
اجابة صحيحة: B
السؤال #22
Given the above OCAPI definitions, which permission or permissions apply?
A. Allows external applications to update coupons
B. Allows external applications to create, update, and delete coupons
C. Allows external applications to create coupons
D. Allow external applications to create, update, and delete both coupons and coupon codes
عرض الإجابة
اجابة صحيحة: A
السؤال #23
Given the code snippet above, what should be added after this code so it can be used for page component display?
A. module
B. module
C. module
D. base
عرض الإجابة
اجابة صحيحة: D
السؤال #24
The Order Management System (OMS) uses a non-standard XML parser it did not manage to parse orders with the survey, until the survey attribute was manually removed from the xml. How should the Architect address the issues and requirements described above?
A. Create a custom session attribute when the survey is required
B. Create a custom object to store the survey data
C. Create a custom object when the survey is required Send to the API endpoint in real-time
D. Send the survey data to the API endpoint in real-time until the survey data is successfully captured
عرض الإجابة
اجابة صحيحة: C
السؤال #25
What is accomplished by the code below?
A. Performs a local include from the Account-Header endpoint
B. Performs a remote include from the Account-Header endpoint
C. Creates a link to the Account-Header endpoint that allows mobile navigation
D. Performs a call to the Account-Header endpoint to allow mobile navigation
عرض الإجابة
اجابة صحيحة: A
السؤال #26
Refer to this example snippet of an ISML template:Welcome back, ${pdict.username}.The "pdict.username" variable does not print correctly when used in a similar template. Assuming that the variable is correct in the Controller's "viewData", how should a developer temporarily modify their code to use a debugger and troubleshoot the issue in the template?
A. Add antag to have the debugger stop at the desired line
B. Add antag and JavaScript with a breakpoint set
C. Add a localtag to inspect the topLevel function in the call stack
D. Add antag to allow the inspection of global variables
عرض الإجابة
اجابة صحيحة: C
السؤال #27
A developer is asked to create a controller endpoint that will be used in a client-side AJAX request. Its purpose is to display updated information to the user when the request is completed, without otherwise modifying the appearance of the current page. According to SFRA practices, which method best supports this objective?
A. res
B. res
C. res
D. res
عرض الإجابة
اجابة صحيحة: B
السؤال #28
During a review of the most recent release notes, the Architect finds that Salesforce has deprecated an API that is used throughout the site. After reviewing the deprecated API usage in Business Manager, the Architect narrows down the usage of that API to a particular LINK integration cartridge. The cartridge was integrated when the site was first launched and is heavily customized for the Client.What is the recommended way for the Architect to remove the deprecated API so the LINK integration continues to
A. The Architect should update all the deprecated API cats in the already integrated LINK cartridge and test thoroughly
B. The Architect does not need to do anything at this time, the API will continue to work with no issues for the foreseeable future
C. The Architect should check to see If the LINK cartridge has been updated already, integrate It, apply the customisations, and teat thoroughly
D. The Architect should contact the company that created the LINK cartridge to fix the issue and provide the client with updated code
عرض الإجابة
اجابة صحيحة: C
السؤال #29
A developer customized the Cart-Show controller route with a LINK cartridge that adds social media data. There is a new requirement to add a dataLayer object to the Cart-Show controller route. How should the developer achieve this to ensure that no code change will be needed if the client decides to remove the LINK cartridge?
A. Replace the existing viewData variable with the dataLayer object in the Cart-Show controller route
B. Replace the Cart-Show controller route in client cartridge and add dataLayer object to the viewData variable
C. Replace the Cart-Show controller route in client cartridge and add dataLayer object to the viewData variable
D. Append Cart-Show controller route in the client cartridge and add dataLayer object to the viewData variable
عرض الإجابة
اجابة صحيحة: C
السؤال #30
Given the above OCAPI definitions, which permission or permissions apply?
A. Allows external applications to create coupons
B. Allows external applications to create, update, and delete coupons
C. Allow external applications to create, update, and delete both coupons and coupon codes
D. Allows external applications to update coupons
عرض الإجابة
اجابة صحيحة: D

View The Updated Salesforce Exam Questions

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

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

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

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

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