Question 101

What are three characteristics of change set deployments?
Choose 3 answers
  • Question 102

    Universal Containers has a Visualforce page that displays a table of every Container___c being rented by a given Account. Recently this page is failing with a view state limit because some of the customers rent over 10,000 containers.
    What should a developer change about the Visualforce page to help with the page load errors?
  • Question 103

    What are two ways a developer can get the status of an enquered job for a class that queueable interface? Choose 2 answers
  • Question 104

    Which code displays the content of Visualforce page as PDF?
  • Question 105

    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?