This operator can be applied only to real and int numbers. If used on complex numbers, it will only use the real part of the complex number.
x % y = x-trunc((x/y))*y
3 % 4 = 3
11%3 = 2