Andre Long CISP 350 Oracle April 20, 2006 Chapter 4A PSC CASE#8 a) DECLARE accumulator NUMBER:= 0; /* change data type from BINARY_INTEGER to NUMBER and initalailzied it */ BEGIN accumulator := accumulator + 1; DBMS_OUTPUT.PUT_LINE('The total is ' || TO_CHAR(accumulator)); END;