Question 81
Where are two locations a developer can look to find information about the status of asynchronous or future calls? (Choose two.)
Question 82
When a Task is created for a Contact, how can a developer prevent the task from being included on the Activity Timeline of the Contact's Account record?
Question 83
What is a benefit of using an after insert trigger over using a before insert trigger?
Question 84
A developer uses an 'after update' trigger on the Account object to update all the Contacts related to the Account. The trigger code shown below is randomly failing.
List<Contacts> theContacts = new List<Contacts>(); for(Account a : Trigger.new){ for(Contact c : [SELECT Id, Account_Date__c FROM Contact WHERE AccountId = :a.Id]){ c.Account_Date__c = Date.today(); theContacts.add(c);
}
} updates theContacts;
Which line of code is causing the code block to fail?
Question 85
What should a developer use to fix a Lightning web component bug in a sandbox?
