PDII Salesforce Certified Platform Developer II (PDII)

Loading demo links...

Showing 7–9 of 20 questions

Question 7

Which API can be used to execute unit tests? (Choose three.)

Select all that apply, then click Submit answer.

  • Streaming API

  • Test API

  • Tooling API

  • SOAP API

  • Metadata API

Question 8

Which two objects can be inserted in the same transaction? (Choose two.)

Select all that apply, then click Submit answer.

  • Opportunity and User

  • Account and AccountShare

  • Case and CaseComment

  • Account and Group

Question 9

Consider the following queries. For these queries, assume that there are more than 200,000 Account records. These records include soft-deleted records; that is, deleted records that are still in the Recycle Bin. Note that there are two fields that are marked as External Id on the Account. These fields are Customer_Number__c and ERP_Key__c.

Which two queries are optimized for large data volumes? Choose 2 answers

Select all that apply, then click Submit answer.

  • SELECT Id FROM Account WHERE Id IN : aListVariable

  • SELECT Id FROM Account WHERE Name != ' ' AND IsDeleted = false

  • SELECT Id FROM Account WHERE Name != NULL

  • SELECT Id FROM Account WHERE Name != ' ' AND Customer Number c = 'ValueA’