Question 101

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

    Which two types of process automation can be used to calculate the shipping cost for an Order when the Order is placed and apply a percentage of the shipping cost of some of the related Order Products?
    Choose 2 answers
  • Question 103

    Which Apex collection is used to ensure that all values are unique?
  • Question 104

    Which three Salesforce resources can be accessed from a Lightning web component?
    Choose 3 answers
  • Question 105

    A developer has a requirement to create an Order When an Opportunity reaches a "Closed-Won" status.
    Which tool should be used to implement this requirement?