Question - What is a modulus operator? What are the restrictions of a modulus operator?
Answer -
A Modulus operator gives the remainder value. The result of x%y is obtained by (x-(x/y)*y). This operator is applied only to integral operands and cannot be applied to float or double.