PDI Exam Question 171

What are two benefits of using declarative customizations over code? Choose 2 answers What are two benefits of using declarative customizations over code?
  • PDI Exam Question 172

    Universal Container(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 ad to create the most efficient model that supports the business need?
  • PDI Exam Question 173

    A developer needs to join data received from an integration with an external system with parent records in Salesforce. The data set does not contain the Salesforce IDs of the parent records, but it does have a foreign key attribute that can be used to identify the parent.
    Which action will allow the developer to relate records in the data model without knowing the Salesforce ID?
    Create a custom field on the child object of type Foreign Key
  • PDI Exam Question 174

    Universal Containers wants Opportunities to be locked from editing when reaching the Closed/Won stage.
    Which two strategies should a developer use to accomplish this? Choose 2 answers
  • PDI Exam Question 175

    A developer is tasked to perform a security review of the ContactSearch Apex class that exists in the system.
    Whithin the class, the developer identifies the following method as a security threat: List<Contact> performSearch(String lastName){ return Database.query('Select Id, FirstName, LastName FROM Contact WHERE LastName Like %'+lastName+'%); } What are two ways the developer can update the method to prevent a SOQL injection attack? Choose 2 answers