DEX-450 Exam Question 86

The Account object has a custom formula field,Level__c, that is defined as a Formula(Number) with two decimal places. Which three are valid assignments? Choose 3.
  • DEX-450 Exam Question 87

    The orderHelper class is a utility class that contains business logic for processing orders. Consider the following code snippet:
    A developer needs to create a constant named DELIVERY_MULTIFILTER with a value of 4.15. The value of the constant should not change at any time in the code.
    How should the developer declare the DELIVERY_MULTIFILTER constant to meet the business objectives?
  • DEX-450 Exam Question 88

    Which annotation exposes an Apex class as a RESTful web service?
  • DEX-450 Exam Question 89

    From which 2 locations can a developer determine the overall code coverage for a sandbox?
  • DEX-450 Exam Question 90

    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?