What is the transaction limit for the number of SOSL queries?

What is the transaction limit for the number of SOSL queries?A . 20B . 2,000C . 100 (synchronous), 200 (async)D . 200 (synchronous), 100 (async)E . There is no limitView AnswerAnswer: A

March 15, 2021 No Comments READ MORE +

What is a valid request for the following REST method? (Choose two.)

What is a valid request for the following REST method? (Choose two.) @HttpPost global static void myPostMethod(String si, Integer il, Boolean bl, String 52)A . <request> <sl>my first string</sl> <ll>123</il> <32>my second string</32> <bl>false</bl> </request>B . <request> <sl>"my first string"</sl> <il>123</il> <sZ>!,my second string"</32> <bl>false</bl> </request>C . si" : "my...

March 15, 2021 No Comments READ MORE +

Which two changes should a developer make in this trigger to adhere to best practices?

Consider the above trigger intended to assign the Account to the manager of the Account''s region. Which two changes should a developer make in this trigger to adhere to best practices? Choose 2 answersA . Use a Map accountMap instead of List accountList.B . Use a Map to cache the...

March 14, 2021 No Comments READ MORE +

Which use case can only be performed by using asynchronous Apex?

Which use case can only be performed by using asynchronous Apex?A . Scheduling a batch process to complete in the futureB . Processing high volumes of recordsC . Updating a record after the completion of an insertD . Calling a web service from an Apex triggerView AnswerAnswer: D

March 14, 2021 No Comments READ MORE +

Which type of controller is best suited when you want to add custom functionality to a standard controller page, or when you want reusable functionality throughout pages?

Which type of controller is best suited when you want to add custom functionality to a standard controller page, or when you want reusable functionality throughout pages?A . Standard ControllerB . Standard List/Set ControllerC . Controller ExtensionsD . Custom ControllerView AnswerAnswer: C

March 14, 2021 No Comments READ MORE +

What is the optimal way to implement this?

A Visualforce page contains an industry select list and displays a table of Accounts that have a matching value in their Industry field. <apex:selectList value="{!selectedIndustry}"> <apex:selectOptions values="{!industries}"/> </apex:selectList> When a user changes the value in the industry select list, the table of Accounts should be automatically updated to show the...

March 14, 2021 No Comments READ MORE +

Assuming there were 10 Contacts and five Accounts created today, what is the expected result?

Given the following code: Assuming there were 10 Contacts and five Accounts created today, what is the expected result?A . System. QueryException: List has more than one row after Assignment on Account.B . System. LimitException: To many SOQL Queries on Account.C . System. QueryException: To many DML Statement errors on...

March 13, 2021 No Comments READ MORE +

What is the transaction limit on the max execution time?

What is the transaction limit on the max execution time?A . 5 minutesB . 10 minutesC . 15 minutesD . 20 minutesE . There is no limitView AnswerAnswer: B

March 13, 2021 No Comments READ MORE +

What may have caused this problem?

A developer creates an application event that has triggered an infinite loop. What may have caused this problem?A . The event has multiple handlers registered in the project.B . The event handler calls a trigger.C . An event is fired ontouchend" and is unhandled.D . The event Is fired from...

March 13, 2021 1 Comment READ MORE +

What should be considered in order to do this?

A developer wants to use an Aura Component with a Custom Action. What should be considered in order to do this?A . A default value must be provided for each component attribute marked as required.B . The component must implement the force:lightningQuickActionButton interface.C . The component's JavaScript controller must handle...

March 13, 2021 No Comments READ MORE +