InterviewSolution
Saved Bookmarks
| 1. |
What Are The Arithmetic Operations? |
|
Answer» There are 4 basic arithmetic OPERATIONS on numeric values as shown in the following sample script: PROCEDURE proc_arithmetic AS ADDITION NUMBER; subtraction NUMBER; multiplication NUMBER; DIVISION NUMBER; BEGIN addition := 7 + 8; subtraction := addition - 7; multiplication := subtraction * 5; division := multiplication / 8; -- division should contain 5 now END;There are 4 basic arithmetic operations on numeric values as shown in the following sample script: |
|