Question: 1
What is a valid statement about Apex classes and interfaces? Choose 2 answers:
Question: 2
A developer has the following trigger that fires after insert and creates a child Case whenever a new Case is created. List<Case> childCases = new List<Case>();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?
Question: 3
When the number of record in a recordset is unknown, which control statement should a developer use to implement a set of code that executes for every record in the recordset, without performing a .size() or .length() method call?
Question: 4
Which code segment can be used to control when the dowork() method is called?
Question: 5
When would a developer use a custom controller instead of a controller extension? Choose 2 answers: