Multiple choice technology programming languages

SELECT ABS(-15) "Absolute" FROM DUAL;

  1. -15

  2. 15

  3. 16

  4. 14

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

The ABS function returns the absolute value of a number. ABS(-15) converts the negative number -15 to its positive equivalent 15. Absolute value represents the distance from zero without regard to direction.