What is the value of acctscore after this code executes? 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 process account(){decimal acctscore = acc.rating__c * 100; }