Multiple choice technology programming languages

SELECT FLOOR(15.7) "Floor" FROM DUAL;

  1. 16

  2. -15

  3. 14

  4. 15

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

The FLOOR function returns the largest integer less than or equal to the input value. FLOOR(15.7) rounds 15.7 down to 15, truncating the decimal portion. Floor always rounds toward negative infinity.