Salesforce Certified Platform Developer II Free Practice Exam Questions

236 real Salesforce Certified Platform Developer II exam questions with answers and AI explanations. Salesforce certification prep — page 1 of 24.

  1. Question 1: Which interface needs to be implemented by a Lightning Component so that it may be displayed in modal dialog by clicking a button on a Lightning Record page?
  2. Question 2: A company has a custom object, Sales Demo Request, that has a lookup to an Opportunity. It is required that a Sales Demo Request record be created when an Oppo…
  3. Question 3: trigger AssignOwnerByRegion on Account ( before insert, before update ) { List<Account> accountList = new List<Account>(); for( Account anAccount : trigger.new…
  4. Question 4: A company uses an external system to manage its custom account territory assignments. Every quarter, millions of Accounts may be updated in Salesforce with new…
  5. Question 5: A company wants to implement a new call center process for handling customer service calls. It requires service reps to ask for the caller's account number bef…
  6. Question 6: A large company uses Salesforce across several departments. Each department has its own Salesforce Administrator. It was agreed that each Administrator would h…
  7. Question 7: What is a benefit of JavaScript remoting over Visualforce Remote Objects?
  8. Question 8: Recently a Salesforce org's integration failed because it exceeded the number of allowed API calls in a 24-hour period. The integration handles a near real-tim…
  9. Question 9: A developer created a new trigger that inserts a Task when a new Lead is created. After deploying to production, an outside integration is periodically reporti…
  10. Question 10: @isTest static void testIncrement() { Account acct = new Account(Name = 'Test'); acct.Number_Of_Times_Viewed__c = 0; insert acct; AuditUtil.incrementViewed(acc…