Question 106

A custom exception "RecordNotFoundException" is defined by the following code of block.public class RecordNotFoundException extends Exception()which statement can a developer use to throw a custom exception?choose 2 answers
  • Question 107

    A developer needs to provide a Visualforce page that lets users enter Product-specific details during a Sales cycle. How can this be accomplished? (Choose 2)
  • Question 108

    A developer created a Visualforce page and a custom controller with methods to handle different buttons and events that can occur on the page.
    What should the developer do to deploy to production?
  • Question 109

    A developer runs the following anonymous code block in a Salesforce org with 100 accounts List acc= {select id from account limit 10}; delete acc; database.emptyrecyclebin(acc); system.debug(limits.getlimitqueries()+' ,'+Limits.getlimitDMLStatements()); What is the debug output?
  • Question 110

    A developer receives an error when trying to call a global server-side method using the remoteAction decorator.
    How can the developer resolve the error?