1.

What is the % operator?

Answer»

This is the modulus operator, and it GIVES the remainder after the division of TWO integers.

Example

var A= 4
var B= 2

A%B = 0



Discussion

No Comment Found