# Division Remainder

This operator is used in *\<numeric>* expressions. Use it to get the remainder of the division of one value for another.\
\
**Symbol**: %

### **Examples**

* *Example 1*

10 % 5\
**Result** = 0

* *Example 2*

5 % 2\
**Result** = 1

* *Example 3*

2 % "Kalipso"\
**Result** = #K\_DIVISON\_BY\_ZERO\_K#
