What should the developer do to provide the custom user interface?

A developer must provide a custom user interface when users edit a Contact. Users must be able to use the interface in Salesforce Classic and Lightning Experience. What should the developer do to provide the custom user interface?A . Override the Contact’s Edit button with a Visualforce page in Salesforce...

January 13, 2021 No Comments READ MORE +

Which three resources in an Azure Component can contain JavaScript functions?

Which three resources in an Azure Component can contain JavaScript functions?A . ControllersB . helperC . DesignD . StyleE . RendererView AnswerAnswer: A,B,E

January 13, 2021 No Comments READ MORE +

What should the developer do to fulfill the business request in the quickest and most effective manner?

Universal Containers has large number of custom applications that were built using a third-party javaScript framework and exposed using Visualforce pages. The Company wants to update these applications to apply styling that resembles the look and feel of Lightning Experience. What should the developer do to fulfill the business request...

January 13, 2021 No Comments READ MORE +

A developer must implement a CheckPaymentProcessor class that provides check processing payment capabilities that adhere to what defined for payments in the PaymentProcessor interface. public interface PaymentProcessor { void pay(Decimal amount); } Which is the correct implementation to use the PaymentProcessor interface class?

A developer must implement a CheckPaymentProcessor class that provides check processing payment capabilities that adhere to what defined for payments in the PaymentProcessor interface. public interface PaymentProcessor { void pay(Decimal amount); } Which is the correct implementation to use the PaymentProcessor interface class?A . Public class CheckPaymentProcessor implements PaymentProcessor {...

January 13, 2021 1 Comment READ MORE +

Which standard field is required when creating a new contact record?

Which standard field is required when creating a new contact record?A . LastNameB . NameC . AccountIdD . FirstNameView AnswerAnswer: A

January 13, 2021 No Comments READ MORE +

Which technique should be implemented to avoid reaching the governor limit?

A developer must modify the following code snippet to prevent the number of SOQL queries issued from exceeding the platform governor limit. public class without sharing OpportunityService( public static List<OpportunityLineItem> getOpportunityProducts(Set<Id> opportunityIds){ List<OpportunitylineItem> oppLineItems = new List<OpportunityLineItem>(); for(Id thisOppId : opportunityIds){ oppLineItems.addAll([Select Id FROM OpportunityLineItems WHERE OpportunityId = :thisOppId)]; }...

January 13, 2021 No Comments READ MORE +

Which three data types can a SOQL query return? Choose 3 answers

Which three data types can a SOQL query return? Choose 3 answersA . ListB . LongC . IntegerD . sObjectView AnswerAnswer: A,C,D

January 12, 2021 No Comments READ MORE +

What is the value of the count field if an Account is inserted with an initial value of zero, assuming no other automation logic is implemented on the Account?

A developer writes a trigger on the Account object on the before update event that increments a count field. A workflow rule also increments the count field every time that an Account is created or update. The field update in the workflow rule is configured to not re-evaluate workflow rules....

January 12, 2021 1 Comment READ MORE +

Which three per-transaction limits have higher governor limits in asynchronous Apex transactions?

Which three per-transaction limits have higher governor limits in asynchronous Apex transactions?A . Maximum CPU timeB . Maximum heap sizeC . Total SOQL queriesD . Maximum execution timeE . Records returned by SOQLView AnswerAnswer: A,C,E

January 12, 2021 1 Comment READ MORE +

Which method annotation should be used to create records for every method in the test class?

A developer is creating a test coverage for a class and needs to insert records to validate functionality. Which method annotation should be used to create records for every method in the test class?A . @BeforeTestB . @isTest(SeeAllData=True)C . @TestSetupD . @PreTestView AnswerAnswer: C

January 12, 2021 No Comments READ MORE +