What tool in the Developer Console contains information on SOQL query Cardinality?

What tool in the Developer Console contains information on SOQL query Cardinality?A . Checkpoints tabB . Query EditorC . Query Plan ToolD . Log InspectorE . View State TabView AnswerAnswer: D

November 1, 2021 No Comments READ MORE +

REST uses___________.

REST uses___________.A . The HTTP classB . The HTTPRequest classC . The HTTPResponse classD . All of the aboveView AnswerAnswer: D

November 1, 2021 No Comments READ MORE +

How should the developer handle the recursive trigger?

A developer has written an After Update trigger on Account. A workflow rule and field update cause the trigger to repeatedly update the Account records. How should the developer handle the recursive trigger?A . Deactivate the trigger and move the logic into a Process or FlowB . Deactivate the workflow...

November 1, 2021 No Comments READ MORE +

What is the transaction limit for the number of DML statements allowed?

What is the transaction limit for the number of DML statements allowed?A . 20B . 2,000C . 100 (synchronous), 200 (async)D . 200 (synchronous), 100 (async)E . 150View AnswerAnswer: E Explanation: Includes Approval functions, rollbacks/savepoints, and System.runAs

November 1, 2021 No Comments READ MORE +

What should the developer use to ensure error messages are properly displayed?

Users report that a button on a custom Lightning Web Component is not working. However, there are no other details provided. What should the developer use to ensure error messages are properly displayed?A . Add the <apex:messages/> tag to the component.B . Use the Database method with allOrNone set to...

November 1, 2021 No Comments READ MORE +

What is the correct syntax for calling a controller action from a Visualforce page and updating part of the page once the action is completed? (Choose two.)

What is the correct syntax for calling a controller action from a Visualforce page and updating part of the page once the action is completed? (Choose two.)A . <apex : commandFunction action=?l { ! Save} " value="Save" rendered^"thePageBlock"/>B . <apex: actionFunction action=" { ! Save} " name=!,Save" rerender=l,thePageBlock1'/>C . <apex:commandButton...

November 1, 2021 No Comments READ MORE +

What is a benefit of JavaScript remoting over Visualforce Remote Objects?

What is a benefit of JavaScript remoting over Visualforce Remote Objects?A . Supports complex server-side application logicB . Does not require any JavaScript codeC . Does not require any Apex codeD . Allows for specified re-render targetsView AnswerAnswer: A

October 31, 2021 No Comments READ MORE +

Which feature should be used to implement these requirements?

A developer needs to send Account records to an external system for backup purposes. The process must take a snapshot of Accounts as they are saved and then make a callout to a RESTful web service. The web service can only receive, at most, one record per call. Which feature...

October 31, 2021 No Comments READ MORE +

What is the optimal way to store and retrieve the list?

A managed package uses a list of country ISO codes and country names as references data in many different places.. managed package Apex code. What is the optimal way to store and retrieve the list?A . Store the information in Custom Metadata and query it with SOQC . Store the...

October 31, 2021 No Comments READ MORE +

In what order do the following operations execute?

Roll-up summary calculations In what order do the following operations execute?A . 1,2,5,6,4,3B . 1,5,6,2,4,3C . 1,2,4,5,6,3D . 1,6,5,2,4,3View AnswerAnswer: A

October 31, 2021 No Comments READ MORE +