Question 91

A developer created a JavaScript library that simplifies the development of repetitive tasks and features and uploaded the library as a static resource called rsutils in Salesforce. Another developer is coding a new Lightning web component (LWC) and wants to leverage the library, Which statement properly loads the static resource within the LWC?
  • Question 92

    A developer created a Lightning web component for the Account record page that displays the five most recently contacted Contacts for an Account. The Apex method, getRecentContacts, returns a list of Contacts and will be wired to a property in the component.

    Which two lines must change in the above ode to make the Apex method able to be wired?
    Choose 2 answers
  • Question 93

    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 one 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?
  • Question 94

    A Lightning Component has a section that displays some information about an Account and it works well on the desktop, but users have to scroll horizontally to see the Description field output on their mobile devices and tablets.

    Which option has the changes to make the component responsive for mobile and tablet devices?
  • Question 95

    What is the correct order of execution for Visualforce Page "postback" requests (when user interaction requires a page update)?