Question 86
The progress of an apex job queued is using the System.enqueueJob method and needs to be monitored.
Which options are valid? (Choose two.)
Question 87
A developer is asked to update data in an org based on new business rules. The new rules state that Accounts with the type set to 'Customer' should have a status of 'Active', and Accounts with the type set to 'Prospect' should have a status of 'Pending'. No other changes to data should be made.
Which code block will accurately meet the business requirements?
Map<String, String> statusMap = new Map<String, String>{'Customer'=>'Active',
Question 88
Given a list of Opportunity records named opportunityList, which code snippet is best for querying all Contacts of the Opportunity's Account?
A)
B)
C)
D)
Question 89
Choose the correct definition for <apex:actionFunction>.
Question 90
When testing batch classes, what must a developer do?
