Question: 1
What are two ways for a developer to execute tests in an org?
Question: 2
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: 3
What are two ways for a developer to execute tests in an org?
Question: 4
A developer wants to mark each Account in a List<Account> as either or Inactive based on the LastModified field value being more than 90 days.
Which Apex technique should the developer use?
Question: 5
Which feature should a developer use to update an inventory count on related Product records when the status of an Order is modified to indicate it is fulfilled?