Question: 1
A user updates a number field on a record from the value of 1 to 2, and a workflow rule executes, incrementing the value to 3. Which statement is true regarding writing triggers in this case? Choose 2 answers
Question: 2
Trigger on Contact ensures that whenever a Contact's custom field "User Level" is given the value "President," the related Community User's Role is updated as Manager. The Apex unit test method for testing this functionality is failing for a mixed DML error. What is one way that this problem can be solved?
Question: 3
A developer needs to compile a list of 105 for all Accounts and Opportunities that have the word "Acme" in their name' and are created today. Which statement provides the developer with the 105?
Question: 4
What is the potential exception that can be thrown from this SOQL query: Account a = [SELECT Id, (SELECT Id FROM Contacts) FROM Account] Choose 2 answers
Question: 5
What field type can be used in the WHERE clause to improve SOQL query performance? Choose 3 answers