Which governor limit will likely be exceeded within the Apex transaction?

The following code snippet is executed by a Lightning web component in an environment with more than 2,000 lead records: Which governor limit will likely be exceeded within the Apex transaction?A . Total number of DML statement issuedB . Total number of SOQL queries issuedC . Total number of records...

March 25, 2022 No Comments READ MORE +

Which two strategies should a developer use to accomplish this?

Universal Containers wants Opportunities to be locked from editing when reaching the Closed/Won stage. Which two strategies should a developer use to accomplish this? Choose 2 answersA . Use a validation rule.B . Use a trigger.View AnswerAnswer: A,B

March 25, 2022 No Comments READ MORE +

What should a developer use to fix a Lightning web component bug in a sandbox?

What should a developer use to fix a Lightning web component bug in a sandbox?A . Developer ConsoleB . Force.com IDEC . Execute AnonumousD . VS CodeView AnswerAnswer: D

March 24, 2022 No Comments READ MORE +

Which action may cause triggers to fire?

Which action may cause triggers to fire?A . Updates to Feed ItemsB . Renaming or replacing a picklist entryC . Changing a user's default division when the transfer division option is checkedD . Cascading delete operationsView AnswerAnswer: A

March 24, 2022 No Comments READ MORE +

What is the value of x when it is written to the debug log?

Refer to the following Apex code: What is the value of x when it is written to the debug log?A . 0B . 1C . 2D . 3View AnswerAnswer: C

March 24, 2022 No Comments READ MORE +

In terms of the MVC paradigm, what are two advantages of implementing the layer of a Salesforce application using Aura Component-based development over Visualforce? Choose 2 answers

In terms of the MVC paradigm, what are two advantages of implementing the layer of a Salesforce application using Aura Component-based development over Visualforce? Choose 2 answersA . Self-contained and reusable units of an applicationB . Rich component ecosystemC . Automatic code generationD . Server-side run-time debuggingView AnswerAnswer: A,B

March 24, 2022 No Comments READ MORE +

Which Salesforce feature allows a developer to see when a user last logged in to Salesforce if real-time notification is not required?

Which Salesforce feature allows a developer to see when a user last logged in to Salesforce if real-time notification is not required?A . Asynchronous Data Capture EventsB . Developer LogC . Event Monitoring LogD . Calendar EventsView AnswerAnswer: C

March 24, 2022 No Comments READ MORE +

Which code displays the contents of a Visualforce page as a PDF?

Which code displays the contents of a Visualforce page as a PDF?A . <apex:page contentType="pdf">B . <apex:page rendersAs="application/pdf">C . <apex:page contentType="application/pdf">D . <apex:page renderAs="pdf">View AnswerAnswer: D Explanation: https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_output_pdf_renderas.htm You can generate a downloadable, printable PDF file of a Visualforce page using the PDF rendering service. Convert a page to PDF...

March 24, 2022 No Comments READ MORE +

Which action will allow the developer to relate records in the data model without knowing the Salesforce ID?

A developer needs to join data received from an integration with an external system with parent records in Salesforce. The data set does not contain the Salesforce IDs of the parent records, but it does have a foreign key attribute that can be used to identify the parent. Which action...

March 23, 2022 No Comments READ MORE +

Which three code lines are required to create a Lightning component on a Visualforce page? Choose 3 answers

Which three code lines are required to create a Lightning component on a Visualforce page? Choose 3 answersA . $Lightning.createComponentB . <apex:slds/>C . $Lightning.useComponentD . $Lightning.useE . <apex:includeLightning/>View AnswerAnswer: A,D,E

March 23, 2022 No Comments READ MORE +