Q35
Single choice
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?