Multiple choice technology databases

what is the output: select mod(1600,300) from dual;

  1. 300

  2. 100

  3. 500

  4. 000

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

The MOD function returns the remainder when the first number is divided by the second. Here, 1600 divided by 300 equals 5 with a remainder of 100 (since 300 × 5 = 1500). Option B correctly shows 100 as the remainder. Options A and C (300 and 500) are the divisor and a multiple respectively, while D (000) is just a formatting variation of zero.