PDII Exam Question 1

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 used? (Choose three.)
  • PDII Exam Question 2

    Which technique can run logic when an Aura Component is loaded?
  • PDII Exam Question 3

    Exhibit.

    A developer created a JavaScript function as a part of a Lightning web component (LWC) that surfaces information... about leads by imperatively calling getFetchLeadList when certain criteria are met.
    What are these changes the developer should implement in the Apex class above to ensure the LWC can displ... data efficiently while preserving security?
    Choose 3 answers
  • PDII Exam Question 4

    1 Contact con = new Contact ( LastName =fSmith', Department = fAdminT)
    2 insert con;
    3 Contact insertedContact=[select Name from Contact where id=icon.Id];
    4 Savepoint sp_admin = Database.setSavepoint();
    5 con.Department = fHRf;
    6 update con;
    7 Database.rollback(sp_admin);
    8 System.debug(Limits.getDmlStatements 0);
    Given the following code, what value will be output in the logs by line #8?
  • PDII Exam Question 5

    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 reporting errors.
    Which change should the developer make to ensure the integration is not affected with minimal impact to business logic?