Universal Containers wants Opportunities to no longer be editable when it reaches the Closed/Won stage. Which two strategies can a developer use to accomplish this? Choose 2 answersA . Use the Process Automation settings.B . Use an after-save flow.C . Use a trigger.D . Use a validation rule. View Answer Answer: C,D...
Which three options can be used to build out the business logic layer for this application?
Universal Containers decides to use purely declarative development to build out a new Salesforce application. Which three options can be used to build out the business logic layer for this application? Choose 3 answersA . Flow BuilderB . Validation RulesC . Process builder View Answer Answer: A,B,C...
Which annotation exposes an Apex class as a RESTful web service?
Which annotation exposes an Apex class as a RESTful web service?A . RemoteActionB . HttpInvocableC . AuraEnabledD . RestResource View Answer Answer: D...
What should the developer use to override the Contact’s Edit button and provide this functionality?
A developer must provide custom user interfaces when users edit a Contact in either Salesforce Classic or Lightning Experience. What should the developer use to override the Contact’s Edit button and provide this functionality?A . A Visualforce page in Salesforce Classic and a Lightning component in Lightning ExperienceB . A Lightning component in 5alesforce...
Which aspect of Apex programming is limited due to multitenancy?
Which aspect of Apex programming is limited due to multitenancy?A . The number of active Apex classesB . The number of methods in an Apex ClassC . The number of records processed in a loopD . The number of records returned from database queries View Answer Answer: D...
Which action causes a before trigger to fire by default for Accounts?
Which action causes a before trigger to fire by default for Accounts?A . Renaming or replacing picklistB . Importing data using the Data Loader and the Bulk APIC . Converting Leads to Contact accountsD . Updating addresses using the Mass Address update tool View Answer Answer: B...
What are three techniques that a developer can use to invoke an anonymous block of code? (Choose three.)
What are three techniques that a developer can use to invoke an anonymous block of code? (Choose three.)A . Use the SOAP API to make a call to execute anonymous code.B . Create a Visualforce page that uses a controller class that is declared without sharing.C . Run code using the Anonymous Apex feature...
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 Code View Answer Answer: D...
What should a developer use to script the deployment and unit test execution as part of continuous integration?
What should a developer use to script the deployment and unit test execution as part of continuous integration?A . Developer ConsoleB . Execute AnonymousC . Salesforce CLID . VS Code View Answer Answer: C...
How should the developer fix this code?
A developer wrote the following two classes: The StatusFetcher class successfully compiled and saved. However, the Calculator class has a compile time error. How should the developer fix this code?A . Change the class declaration for the statusFetcher class to public with inherited sharing.B . Make the is Active method in the StatusFetcher class...