Choose the correct definition for <apex:actionFunction>.

Choose the correct definition for <apex:actionFunction>.A . Allows for controller methods to be called directly from Javascript. Must be| encapsulated in <apex:form> tags. Unlike actionSupport, these function<apex:actionPoller>s can be called directly from Javascript code B Sends an AJAX request according to the time interval you specify. If this ever gets...

November 3, 2021 No Comments READ MORE +

What is a possible reason to get this error message?

A developer gets an error saying 'Maximum Trigger Depth Exceeded.' What is a possible reason to get this error message?A . The SOQL governor limits are being hit.B . A Process Builder is running that sends mass emails.C . Trigger is recursively invoked more than 16 times.D . There are...

November 3, 2021 No Comments READ MORE +

What is the outcome after executing the following code snippet in the org?

The Contact object has a custom field called "Zone." Its data type is "Text" and field length is 3. What is the outcome after executing the following code snippet in the org?A . Both inserts succeed and the contact record that has the Zone value of 'PI'IT is set to...

November 3, 2021 No Comments READ MORE +

Which statement is true about using ConnectApi namespace (also called Chatter in Apex)? (Choose two.)

Which statement is true about using ConnectApi namespace (also called Chatter in Apex)? (Choose two.)A . Chatter in Apex methods honor the 'with sharing' and 'without sharing' keywordsB . Chatter in Apex operations are synchronous, and they occur immediatelyC . Chatter in Apex methods do not run in system mode;...

November 3, 2021 No Comments READ MORE +

What modification is necessary on the Salesforce side?

A company exposes a REST web service and wants to establish two-way SSL between Salesforce and the REST web service. A certificate signed by an appropriate certificate authority has been provided to the developer. What modification is necessary on the Salesforce side? (Choose two.)A . Create an entry for the...

November 3, 2021 No Comments READ MORE +

How can the Lightning component execute the query?

A developer must perform a complex SOQL query that joins two objects in a Lightning component. How can the Lightning component execute the query?A . Use the SaJesforce Streaming API to perform the SOQL query.B . Create a Process Builder to execute the query and invoke from the Lightning component.C...

November 3, 2021 No Comments READ MORE +

How should a developer verify that a specific Account record is being tested in a test class for a visualforce controller?

How should a developer verify that a specific Account record is being tested in a test class for a visualforce controller?A . Insert the Account in the test class, instantiate the page reference in the test class, then use System.currentPageReference().getParameters{}.put() to set the Account IC . Instantiate the page reference...

November 3, 2021 No Comments READ MORE +

A company wants to implement a new call center process for handling customer service calls. It requires service reps to ask for the caller's account number before proceeding with the rest of their call script. Following best practices, what should a developer use to meet this requirement?

A company wants to implement a new call center process for handling customer service calls. It requires service reps to ask for the caller's account number before proceeding with the rest of their call script. Following best practices, what should a developer use to meet this requirement?A . ApprovalsB ....

November 2, 2021 No Comments READ MORE +

What should the developer do to ensure good data quality and to ensure that data imports, integrations, and searches perform well?

A developer needs to design a custom object that will be integrated into a back-end system. What should the developer do to ensure good data quality and to ensure that data imports, integrations, and searches perform well? (Choose two.)A . Configure a custom field as uniqueB . Configure a custom...

November 2, 2021 No Comments READ MORE +

What is a consideration when using bind variables with dynamic SOQL? (Choose two.)

What is a consideration when using bind variables with dynamic SOQL? (Choose two.)A . Dynamic SOQL cannot reference fields on bind variablesB . Dynamic SOQL cannot use bind variablesC . Bind variables must be public or globalD . Bind variables must be in local scopeView AnswerAnswer: A,D

November 2, 2021 No Comments READ MORE +