Question 91
Which requirement needs to be implemented by using standard workflow instead of Process Builder? Choose 2 answers
Question 92
Which two components are available to deploy using the METADATA API? Choose 2 answers
Question 93
A developer is asked to create a custom visualforce page that will be used as a dashboard component. Which three are valid controller options for this page? Choose 3 answers
Question 94
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 95
Which resource can be included in a Lightning Component bundle?Choose 2 answers
