What Are the Arithmetic Operations?
There are 4 basic arithmetic operations on numeric values as shown in the following sample script:PROCEDURE proc_arithmetic ASaddition NUMBER;subtraction NUMBER;multiplication NUMBER;division NUMBER;BEGINaddition := 7 + 8;subtraction := addition – 7;multiplication := subtraction * 5;division := multiplication / 8;– division should contain 5 nowEND;