Question 91

What are three capabilities of the <ltng: require> tag when loading JavaScript resources in Aura components?
Choose 3 answers
  • Question 92

    Which data type or collection of data types can SOQL statements populate or evaluate to? (Choose 3)
  • Question 93

    A developer is tasked to perform a security review of the ContactSearch Apex class that exists in the system. Within the class, the developer identifies the following method as a security threat:
    ist<Contact> performSearch (String lastName} [
    return Database.query('SELECT Id, FirstName, LastName FROM Contact WHERE LastName Like s'+lastName+'s'")?; What are two ways the developer can update the method to prevent a SOQL injection attack?
    Choose 2 answers
  • Question 94

    A developer must provide a custom userinterface when users edit a Contact. Users must be able to use the interface in Salesforce Classic and Lightning Experience.
    What should the developer do to provide the custom user interface?
  • Question 95

    As a part of class implementation a developer must execute a SOQL query against a large data ser based on the contact object. The method implementation is as follows.

    Which two methods are best practice to implement heap size control for the above code? (Choose 2 Answers)