Question 101

What is the advantage of Salesforce Lightning?
  • Question 102

    A developer must write an Apex method that will be called from a Lightning component. The method may delete an Account stored in the accountRec variable.
    Which method should a developer use to ensure only users that should be able to delete Accounts can successfully perform deletions?
  • Question 103

    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 104

    What is a valid source and destination pair that can send or receive change sets? (Choose 2)
  • Question 105

    Before putting an app into production, which step should be taken?