Question 76

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?
  • Question 77

    What are two ways a developer can get the status of an enqueued job for a class that implements the queueable interface?
    Choose 2 answers
  • Question 78

    A developer creates an Apex Trigger with the following code block:List<Account> customers = new List<Account>();For (Order__c o: trigger.new){Account a = [SELECT Id, Is_Customer__c FROM Account WHERE Id
    :o.Customer__c];a.Is_Customer__c = true;customers.add(a);}Database.update(customers, false);The developer tests the code using Apex Data Loader and successfully loads 10 Orders. Then, the developer loads 150 Orders.How many Orders are successfully loaded when the developer attempts to load the 150 Orders?
  • Question 79

    Which annotation should a developer use on an Apex method to make it available to be wired to a property in a Lightning web component?
  • Question 80

    What is an example of a polymorphic lookup field in Salesforce?