Question 116

Which option would a developer use to display the Accounts created in the current week and the number of related Contacts using a debug statement in Apex?
  • Question 117

    The account object has a custom percent field, rating, defined with a length of 2 with 0 decimal places. An account record has the value of 50% in its rating field and is processed in the apex code below after being retrieved from the database with SOQL public void processaccount(){ decimal acctscore = acc.rating__c * 100; } what is the value of acctscore after this code executes?
  • Question 118

    How should a developer avoid hitting the governor limits in test methods?
  • Question 119

    A workflow updates the value of a custom field for an existing Account.
    How can a developer access the updated custom field value from a trigger?
  • Question 120

    A developer needs to know if all tests currently pass in a Salesforce environment. Which feature can the developer use? (Choose 2)