PDI Exam Question 126

A developer executes the following query in Apex to retrieve a list of contacts for each account:
List<account> accounts = [Select ID, Name, (Select ID, Name from Contacts) from Account] ; Which two exceptions may occur when it executes? (Choose two.)
  • PDI Exam Question 127

    A developer is debugging the following code to determinate why Accounts are not being created Account a = new Account(Name = 'A'); Database.insert(a, false); How should the code be altered to help debug the issue?
  • PDI Exam Question 128

    Which two settings must be defined in order to update a record of a junction object? Choose 2 answers
  • PDI Exam Question 129

    Universal Containers (UC) wants to lower its shipping cost while making the shipping process more efficient. The Distribution Officer advises UC to implement global addresses to allow multiple Accounts to share a default pickup address. The developer is tasked to create the supporting object and relationship for this business requirement and uses the Setup Menu to create a custom object called "Global Address".
    Which field should the developer add to create the most efficient model that supports the business need?
  • PDI Exam Question 130

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

    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 useto Implement the business requirement in order to minimize maintenance overhead?