Multiple choice technology programming languages

$MOD(5,3) equals

  1. 3

  2. 2

  3. 1

  4. 4

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

$MOD performs the modulo operation, returning the remainder after division. When 5 is divided by 3, the quotient is 1 and the remainder is 2, so $MOD(5,3) equals 2.