April 2017
Intermediate to advanced
706 pages
17h 8m
English
The Arithmetic operators include the following set of operators, as shown in the following table:

As we can see, in the Data Types column, these operators can be used on various data types. Numeric types include Integer, Decimal, Boolean, and Character data types. Text and Code are both String data.
Sample statements using DIV and MOD follow where BigNumber is an integer containing 200:
DIVIntegerValue := BigNumber DIV 60;
The contents of DIVIntegerValue, after executing the preceding statement, will be 3:
MODIntegerValue := BigNumber MOD 60;
The contents of MODIntegerValue, after executing the preceding ...
Read now
Unlock full access