PDII Exam Question 86

A company notices that their unit tests in a test class with many methods to create many records for prerequisite reference data are slow. What can a developer to do address the issue?
  • PDII Exam Question 87

    A Lightning web component exists in the system and displays information about the record in context as a modal. Salesforce administrators need to use this component within the Lightning App Builder.
    Which two settings should the developer configure within the xml resource file?
    Choose 2 answers
  • PDII Exam Question 88

    A company has a custom object, Order__c, that has a custom picklist field, Status__c, with values of 'New', 'In Progress', or 'Fulfilled' and a lookup field, Contact__c, to Contact.
    Which SOQL query will return a unique list of all the Contact records that have no 'Fulfilled' Orders?
    SELECT Id FROM Contact WHERE Id NOT IN (SELECT Id FROM Order__c WHERE
  • PDII Exam Question 89

    [FIND 'map' IN ALL FIELDS RETURNING Account (Id, Name), Contact, Opportunity, Lead] What is a valid return type for the following SOSL query?
  • PDII Exam Question 90

    What is the output of the following code snippet? 1 Contact con = new Contact( LastName = 'JOHNSON', LeadSource = 'Web') 2 3 Savepoint sp = Database.setSavepoint(); 4 insert con; 5 Database.rollback(sp); 6 7 con.LeadSource = 'Email' 8 insert con;