ODD function

Synopsis
This function verifies whether a number is odd.
Variations
ODD(Number)
Returns 1 if the number is odd; otherwise, returns 0.
Parameters
Number

Specifies the number to verifiy.

Supported types: Numeric.
Returns
Returned types: Numeric.
Examples
1.

The following example verifies whether the number 8 is odd and returns 0.

ODD(8)
2.

The following example verifies whether the number 9 is odd and returns 1.

ODD(9)