100%無料B2C-Commerce-Developer試験問題集で試験を簡単に合格させます [Q50-Q66]

Share

100%無料B2C-Commerce-Developer試験問題集で試験を簡単に合格させるFast2test

無料B2C-Commerce-Developer試験問題B2C-Commerce-Developer実際のリアル試験問題


Salesforce B2C Commerce Cloudを使用したeコマースソリューションの開発経験を持つ開発者であれば、Salesforce B2C-Commerce-Developer認定試験は、あなたのスキルと知識を検証する絶好の機会です。この試験に合格することは、あなたのキャリアを進めるだけでなく、eコマース開発における卓越性への取り組みを示すことにもなります。

 

質問 # 50
A developer cannot create a custom object in Business Manager because the attributes do not show. The developer can view the object but not the attributes.
Which action should the developer take to resolve the problem?

  • A. Set the attributes to site-specific replicable.
  • B. Change the data type of the attributes.
  • C. Create an attribute Group with the desired attributes in it.

正解:C


質問 # 51
A developer has a specification to integrate with a REST API for retrieving traffic conditions. The service expects parameters to be form encoded.
Which service type should the developer register?

  • A. HTML Form
  • B. SOAP Form
  • C. POST Form
  • D. HTTP Form

正解:A


質問 # 52
Given the requirement to add caching to an existing page while adhering to SFRA best practices, which code snippet should be used?

  • A. // code
    });
    <iscache varyby="price_promotion" type="relative" status="on"/>
  • B. server.get('Show', function (req, res, next) {
  • C. //code
    }).applyDefaultCache();
    <iscache type="relative" hour="24"/>
  • D. server.get('Show', cache.applyDefaultCache, function (req, res, next) {

正解:D

解説:
Explanation/Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%
2Fcom.demandware.dochelp%2Fsfrajsdoc%2Fjs%2Fserver%
2Fapp_storefront_base_cartridge_controllers_Page.js.html


質問 # 53
A developer has configured the following log levels for categories & sub categories as WARN logging is enabled for 'product' and DEBUG for "product.import" What will be the log level used for various categories and sub-categories?

  • A. WARN and ERROR are logged fix product' and all its subcategories. For the subcategory'' product.import* DEBUG and INFO are not logged.
  • B. WARN and FRROR ate lugged for product" and all its subcategories.
  • C. WARN and ERROR are lugged for product" and all its subcategories. For the subcategory 'product.import' DEBUG and INFO are also logoed

正解:C


質問 # 54
Recent code changes to an existing cartridge do not appear correctly on a Storefront. The developer confirms that the code is uploaded in the IDE and ensures that the cartridge is associated with the sandbox.
Which two additional steps should the developer take to troubleshoot this problem?
Choose 2 answers

  • A. Check the Business Manager site cartridge path.
  • B. Check the Storefront site cartridge path.
  • C. Check that the correct code version is selected.
  • D. Check that the search index was recently rebuilt.

正解:B、D


質問 # 55
Universal Containers needs to have Apple Pay disabled for the country of Spain.
Which Business Manager module should the Developer use to meet this requirement?

  • A. Merchant Tools > Ordering > Payment Processors
  • B. Merchant Tools > Site Preferences > Apple Pay
  • C. Merchant Tools > Site Preferences > Payment Types
  • D. Merchant Tools > Ordering > Payment Methods

正解:D

解説:
Explanation/Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%
2Fcom.demandware.dochelp%2FApplePay%2FEnableAPWUsingALinkCartridge.html


質問 # 56
A Digital Developer has created a new PaymentForm controller that requires communication with the server and must be made using the HTTPS protocol.
Which code sample should the Developer use to make sure that HTTPS is used?

  • A. exports.PaymentForm = guard.ensure(['http\ 'post', 'loggedln'], handlePaymentForm);
  • B. exports.PaymentForm = guard.expose(['post', 'loggedln'], handlePaymentForm);
  • C. exports.PaymentForm = guard.ensure(['https', 'post', 'loggedln'], handlePaymentForm);
  • D. exports.PaymentForm = guard.httpsPost(handlePaymentForm);

正解:C


質問 # 57
Assume the code below is executing:

Business Manager has the configuration:
* Active Log category is "root" with log level of "info."
Given this information, what is the beginning of the filename in which the log will be written?

  • A. custom-export
  • B. custom-xyz
  • C. xyz
  • D. custominfo-blade

正解:B


質問 # 58
A developer has configured the following log levels for categories & sub categories as WARN logging is enabled for 'product' and DEBUG for "product.import" What will be the log level used forvarious categories and sub-categories?

  • A. WARN and ERROR are lugged for product" and all its subcategories. For the subcategory
    'product.import' DEBUG and INFO are also logoed
  • B. WARN and FRROR ate lugged for product" and all its subcategories.
  • C. WARN and ERROR are logged fix product' and all its subcategories. For thesubcategory'' product.import* DEBUG and INFO are not logged.

正解:A


質問 # 59
A client that sells to multiple countries in Europe needs to disable Apple Pay for Denmark.
Which Business Manager module is used to achieve this requirement?

  • A. Payment Processors
  • B. Apple Pay
  • C. Locale Payments
  • D. Payment Methods

正解:B

解説:
Explanation


質問 # 60
A developer has these requirements for out-of-stock products:
* Save the SKUs of the out-of-stock products that the customer is interested in
* Save the customer email regardless if the customer is a guest or registered
* Email the customer when the product is back-in-stock
Which step should the developer perform as part of the solution to achieve the requirements?

  • A. Create a new set-of-string type custom attribute to the system object type Product to save all the customer email addresses for back-in-stock notification.
  • B. Create a new set-of-string type custom attribute to the system object type Profile to save all the SKUs and use the existing email field for the email.
  • C. Create a new custom object type that has a set-of-string type custom attribute for the SKUs and a string for the email field.
  • D. Create a new system object type that has a set-of-string type custom attribute for the SKUs and a string for the email field.

正解:A


質問 # 61
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:
* validateRequest
* validateAjaxRequest
Where in the code does the developer need to add this CSRF validation check?

  • A. In the controller function that displays the form
  • B. In the view function that handles the submitted form
  • C. In the model function that persists the form data
  • D. In the middleware chain of the controller post route

正解:D


質問 # 62
A Digital Developer wants pass control to an ISML template from a JavaScript Controller and load product on the pipeline dictionary with the name myProduct.
Which code sample will achieve this?

  • A. ISML.renderTemplate{ "helloworld.isml", { myProduct: product });
  • B. ISML.renderTemplate( "helloworld.isml", { "myProduct": "product" });
  • C. ISML.renderTemplate{ "helloworld.isml", { "product": myPrcduct });
  • D. ISML.renderTemplate( "helloworld.isml", { product: myProduct });

正解:A


質問 # 63
A developer is given the requirement to add a step to the existing business logic of the registration process. How should the developer modify the route that handles the customer registration?

  • A. Extend the route with new functionality.
  • B. Copy the code from the original route to a new controller route, and change it.
  • C. Override the route with new functionality.
  • D. Change the controller route with new functionality.

正解:B


質問 # 64
The following sample code is NOT providing the desired results. The Digital Developer needs to add an entry to the logs to debug the problem.

Which statement correctly adds a log entry?

  • A. Logger.getErrorLog().log('Unable to find Apple Pay payment instrument for order.'+paymentInstruments);
  • B. Logger.fault('Unable to find Apple Pay payment instrument for order.'+paymentInstruments);
  • C. Logger.exception('Unable to find Apple Pay payment instrument for order.'+paymentInstruments);
  • D. Logger.error('Unable to find Apple Pay payment instrument for order.'+paymentInstruments);

正解:C


質問 # 65
The following sample code is NOT providing the desired results. The Digital Developer needs to add an entry to the logs to debug the problem.

Which statement correctly adds a log entry?

  • A. Logger.getErrorLog().log('Unable to find Apple Pay payment instrument for order.'+paymentInstruments);
  • B. Logger.fault('Unable to find Apple Pay payment instrument for order.'+paymentInstruments);
  • C. Logger.exception('Unable to find Apple Pay payment instrument for order.'+paymentInstruments);
  • D. Logger.error('Unable to find Apple Pay payment instrument for order.'+paymentInstruments);

正解:C


質問 # 66
......


Salesforce B2C-Commerce-Developer 試験に合格するためには、候補者は Salesforce B2C Commerce プラットフォームとその機能について深い理解を持っている必要があります。また、プラットフォームを使用して eCommerce サイトを構築する経験が必要です。この試験は、多肢選択問題とシナリオベースの問題の組み合わせで構成され、候補者の現実世界の問題を解決する能力をテストします。

 

最新100%合格率保証付きの素晴らしいB2C-Commerce-Developer試験問題PDF:https://jp.fast2test.com/B2C-Commerce-Developer-premium-file.html

検証済みのB2C-Commerce-Developer問題集207格別な問題:https://drive.google.com/open?id=1oGj-qeNBK526Fw7iVJcMymg0PA0fCyRz


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어