Multiple choice technology programming languages

SELECT MOD(11,4)FROM DUAL;

  1. 3

  2. 4

  3. 1

  4. 2

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

MOD returns the remainder of division. MOD(11,4) divides 11 by 4 and returns the remainder. 4 × 2 = 8, and 11 - 8 = 3. Therefore, MOD(11,4) = 3.