Download Salesforce.B2C-Commerce-Developer.CertKey.2020-03-18.30q.vcex

Download Exam

File Info

Exam Salesforce Certified B2C Commerce Developer
Number B2C-Commerce-Developer
File Name Salesforce.B2C-Commerce-Developer.CertKey.2020-03-18.30q.vcex
Size 953 KB
Posted Mar 18, 2020
Download Salesforce.B2C-Commerce-Developer.CertKey.2020-03-18.30q.vcex

How to open VCEX & EXAM Files?

Files with VCEX & EXAM extensions can be opened by ProfExam Simulator.

Purchase

Coupon: MASTEREXAM
With discount: 20%






Demo Questions

Question 1

What happens if the log file size limit is reached in custom logging?


  1. Logging is suspended for the day.
  2. Logging is suspended for two hours.
  3. The log file is deleted and recreated from scratch.
  4. The log file rolls over and the last used log is overwritten.
Correct answer: C
Explanation:
Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC2/index.jsp?topic=%2Fcom.demandware.dochelp%2FSiteDevelopment%2FUnderstandingLogFiles.html
Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC2/index.jsp?topic=%2Fcom.demandware.dochelp%2FSiteDevelopment%2FUnderstandingLogFiles.html



Question 2

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?


  1. Perform a data replication from staging.
  2. Use the Site Development > Site Import & Export Business Manager module.
  3. Download the site export file and use UX Studio to transfer the data to the sandbox.
  4. Use the Site Development > Import & Export Business Manager module.
Correct answer: B
Explanation:
Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC2/index.jsp?topic=%2Fcom.demandware.dochelp%2FImportExport%2FUsingSiteImportExporttoCopyInstances.html
Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC2/index.jsp?topic=%2Fcom.demandware.dochelp%2FImportExport%2FUsingSiteImportExporttoCopyInstances.html



Question 3

A Digital Developer added a file named MyBusinessController.js in the cartridge named app_project. The project design calls for this new file to override MyBusinessController.js in client_project. The client_project cartridge contains other necessary functionality. Additional functionality is also included in the storefront_core and storefront_controllers cartridges. 
Which cartridge path meets the project requirements?


  1. client_project:app_project:storefront_controllers:storefront_core
  2. app_project:storefront_controllers:storefront_core
  3. app_project:client_project:storefront_controllers:storefront_core
  4. storefront_core:storefront_controllers:client_project:app_project
Correct answer: C



Question 4

Universal Containers wants to add a model field to each product. Products will have locale-specific model values. 
How should the Digital Developer implement the requirement?


  1. Utilize resource bundles for translatable values.
  2. Set the model field as a localizable attribute.
  3. Store translated model values in different fields; one field for each locale.
  4. Add model to a new custom object with localizable attributes.
Correct answer: C



Question 5

Universal Containers specifies a new category hierarchy for navigating the digital commerce storefront. A Digital Developer uses Business Manager to manually create a catalog with the specified category hierarchy, then uses the Products & Catalogs > Import & Export module to export the catalog as a file. 
How can other Developers with sandboxes on the same realm create the same catalog in their own sandboxes?


  1. Use Business Manager to upload and import a copy of the export file obtained from the original Developer.
  2. Use the remote upload capability of the Site Import & Export module of Business Manager.
  3. Use the import capability of the Site Import & Export module of Business Manager.
  4. Use the Business Manager Data Replication module to replicate the catalog from the original Developer’s sandbox.
Correct answer: C
Explanation:
Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC2/index.jsp?topic=%2Fcom.demandware.dochelp%2FImportExport%2FCatalogObjectImportExport.html
Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC2/index.jsp?topic=%2Fcom.demandware.dochelp%2FImportExport%2FCatalogObjectImportExport.html



Question 6

The following code ensures that an address ID CANNOT be used if it is already in use by another address in the customer’s address book. There is a problem with the code. The error message for an invalid address ID is never shown to the user on the form field. 
  
How should the Digital Developer resolve this issue so that the error message is displayed on the address ID form field?


  1. addressForm.invalidateFormElement("addressid");
  2. addressForm.addresssid.invalidateFormElement = true;
  3. addressForm.invalidateFormElement(addressForm.addressid);
  4. addressForm.addresssid.invalidateFormElement();
Correct answer: C



Question 7

A business user wants to add a link to a content page from within the body of another content asset. The target content asset ID is: terms-and-conditions.
Which link function generates the correct link?


  1. $include(‘Page-Include’, ‘cid’, ‘terms-and-conditions’)$
  2. $http(‘Content-Page’, ‘cid’, ‘terms-and-conditions’)$
  3. $httpUrl(‘Content-Show’, ‘cid’, ‘terms-and-conditions’)$
  4. $url(‘Page-Show’, ‘cid’, ‘terms-and-conditions’)$
Correct answer: C
Explanation:
Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC3/index.jsp?topic=%2Fcom.demandware.dochelp%2FContent%2FContentassetlinkexamples.html
Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC3/index.jsp?topic=%2Fcom.demandware.dochelp%2FContent%2FContentassetlinkexamples.html



Question 8

A Digital Developer is adding support for an additional language other than the default. The locale code for the new language is de. 
In which folder should the developer place resource bundles?


  1. templates/de
  2. templates/default
  3. templates/resources
  4. templates/default/resources
Correct answer: C
Explanation:
Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%2Fcom.demandware.dochelp%2FLocalization%2FLocalizingTemplateResourceBundles.html
Reference: https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%2Fcom.demandware.dochelp%2FLocalization%2FLocalizingTemplateResourceBundles.html



Question 9

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?


  1. xyz
  2. custominfo-blade
  3. custom-export
  4. custom-xyz
Correct answer: D



Question 10

A Digital Developer has identified that the code segment below is causing performance problems. 
  
What should the Developer do to improve the code?


  1. Use a system attribute instead of the isOnSaleFlag custom attribute.
  2. Avoid post-processing and use the isOnSaleFlag attribute as a search refinement.
  3. Breaks the process into separate loops.
  4. Avoid using an Iterator and use a Collection instead.
Correct answer: C









CONNECT US

Facebook

Twitter

PROFEXAM WITH A 20% DISCOUNT

You can buy ProfExam with a 20% discount!



HOW TO OPEN VCEX FILES

Use ProfExam Simulator to open VCEX files