Multiple choice technology programming languages

SELECT CEIL(15.7) "Ceiling" FROM DUAL;

  1. 16

  2. 15

  3. 14

  4. -15

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

The CEIL function returns the smallest integer greater than or equal to the input value. CEIL(15.7) rounds 15.7 up to the next whole number, which is 16. Ceiling always rounds toward positive infinity.