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 5 of 24.

  1. Question 43: A developer created and tested a Visualforce page in their developer sandbox, but now receives reports that users are encountering ViewState errors when using…
  2. Question 44: The maximum view state size of a visualforce page is __________.
  3. Question 45: A developer has created a solution using the SOAP API for authenticating Communities users. What is needed when issuing the login() Call? (Choose two.)
  4. Question 46: Which are relevant practices while analyzing the timeline of different types of transactions in the execution overview panel? (Choose two.)
  5. Question 47: A developer has been asked to create code that will meet the following requirements: Receives input of: Map<Id, Project_c), List<Account> Performs a potentiall…
  6. Question 48: Which is a valid Apex REST Annotation? (Choose two.)
  7. Question 49: When developing a Visualforce page that will be used by a global organization that does business in many languages and many currencies, which feature should be…
  8. Question 50: Which API can be used to execute unit tests? (Choose three.)
  9. Question 51: Which statement is true about using ConnectApi namespace (also called Chatter in Apex)? (Choose two.)
  10. Question 52: 1 Contact con = new Contact( LastName ='Smith', Department = 'Admin') 2 insert con; 3 Contact insertedContact=[select Name from Contact where id=:con.Id]; 4 Sa…