Question 66

Universal Containers wants to be able to bring up an Account detail page and view a table of containers currently being rented. The user wants to be able to dick on a container In the table and quickly edit and save the location of the container.
In addition to this, the page should have a section that shows the location of each container on a map.
Universal Containers wants the map to re-render whenever the location of a container is changed.
What can a developer use to accomplish this task?
  • Question 67

    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-time, complex insertion of data into Salesforce.
    The flow of data is as follows:
    * The integration looks up Contact records with a given email address and, if found, the integration adds a Task to the first matching Contact it finds.
    * If a match is not found, the integration looks up Lead records with a given email address and, if found, the integration adds a Task to the first matching Lead it finds.
    * If a match is not found, the integration will create a Lead and a Task for that newly created Lead.
    What is one way in which the integration can stay near real-time, but not exceed the number of allowed API calls in a 24-hour period?
  • Question 68

    Exhibit:

    Consider the above trigger intended to assign the Account to the manager of the Account''s region. Which two changes should a developer make in this trigger to adhere to best practices? Choose 2 answers
  • Question 69

    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.)
  • Question 70

    An environment has two Apex Triggers: an after-update trigger on Account and an after-update trigger on Contact. The Account after-update trigger fires whenever an Account's address is updated, and it updates every associated Contact with that address. The Contact after-update trigger fires on every edit, and it updates every Campaign Member record related to the Contact with the Contact's state.
    Consider the following: A mass update of 200 Account records' addresses, where each Account has 50 Contacts. Each Contact has 1 Campaign Member. This means there are 10,000 Contact records across the Accounts and 10,000 Campaign Member records across the contacts.
    What will happen when the mass update occurs?