String Library Functions
String Library Functions
A MOD B means A is divided by B and remainder of division is returned. Here, both A and B must be integer
and the remainder is also an integer. E.g. 43 MOD 11 = 10
Integer Division (\):
A \ B means A is divided by B and quotient of division is returned. A and B are integers and the quotient is
also an integer. E.g. 43 \ 11 = 3
Division (/):
It is a binary operator which divides one number with the other. E.g. 43/11 = 3.909090
Library Function:
The built-in functions that are used for commonly used operations are called library functions. For e.g. ABS(),
INT(), SIN(), COS(), TAN(), SQR(), ASC(), CHR$(), LEFT$(), etc.