00:00

QUESTION 16

What is a good practice for a developer to follow when writing a trigger? (Choose 2)

Correct Answer: BC

QUESTION 17

To which primitive data type in Apex is a currency field atomically assigned?

Correct Answer: B

QUESTION 18

How can a developer avoid exceeding governor limits when using Apex Triggers? (Choose 2)

Correct Answer: BD

QUESTION 19

A developer has the following trigger that fires after insert and creates a child Case whenever a new Case is created. List childCases = new List();for (Case parent : Trigger.new){Case child = new Case (ParentId = parent.Id, Subject = parent.Subject);childCases.add(child);}insert childCases; What happens after the code block executes?

Correct Answer: B

QUESTION 20

What is the easiest way to verify a user before showing them sensitive content?

Correct Answer: B