Question 141

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 142

    Manage package can be created in which type of org?
  • Question 143

    A developer has two custom controller extensions where each has a save() method.
    Which save() method will be called for the following Visualforce page?
    <apex:page standardController ="Account", extensions="ExtensionA, ExtensionB">
    <apex:commandButton action ="{!save}" value="Save"/>
    </apex:page>
  • Question 144

    A developer must create a Lightning component that allows users to input Contact record information to create a Contact record, including a Salary__ccustom field.
    What should the developer use, along with a lightning-record-edit-form, so that Salary__cfield functions as a currency input and is only viewable and editable by users that have the correct field level permissions on Salary__c?
  • Question 145

    When a Task is created for a Contact, how can a developer prevent the task from being included on the Activity Timeline of the Contact's Account record?