Let's see if you are on the right track to becoming a certified Salesforce developer. You'll find all the answers to this chapter summary quiz at the end of this book. Try to answer the questions without looking at the answers.
- Which trigger event allows a developer to update fields in the Trigger.new list without using an additional DML statement? (Choose two answers.)
- Before insert
- Before update
- After update
- After insert
- How can a developer determine, from DescribeSObjectResult, if a given user will be able to create records for an object in Apex?
- By using the isInsertable() method
- By using the isCreatable() method
- By using the hasAccess() method
- By using the canCreate() method
- What is the order in which Salesforce events are executed on saving a record?
- Before triggers; validation rules; after triggers; workflow rules; assignment rules; commit
- Before...