Question 11

An org has an existing Visual Flow that creates an Opportunity with an Update records element. A developer must update the Visual Flow also created a Contact and store the created Contact's ID on the Opportunity.
  • Question 12

    Which code displays the contents of a Visualforce page as a PDF?
  • Question 13

    A developer created these three Rollup Summary fields in the custom object, Project__c:

    The developer is asked to create a new field that shows the ratio between rejected and approved timesheets for a given project.
    Which should the developer use to implement the business requirement in order to minimize maintenance overhead?
  • Question 14

    A developer creates an Apex Trigger with the following code block:List<Account> customers = new List<Account>();For (Order__c o: trigger.new){Account a = [SELECT Id, Is_Customer__c FROM Account WHERE Id
    :o.Customer__c];a.Is_Customer__c = true;customers.add(a);}Database.update(customers, false);The developer tests the code using Apex Data Loader and successfully loads 10 Orders. Then, the developer loads 150 Orders.How many Orders are successfully loaded when the developer attempts to load the 150 Orders?
  • Question 15

    Given the following code snippet, that is part of a custom controller for a Visualforce page:

    In which two ways can the try/catch be enclosed to enforce object and field-level permissions and prevent the DML statement from being executed if the current logged-in user does not have the appropriate level of access? Choose 2 answers