Which of the following gets the largest integer less than or equal to x?

Options
- TRUNC
- CEIL(x)
- FLOOR(x)
- ACOS(x)


CORRECT ANSWER : FLOOR(x)

Discussion Board
CEIL is the correct answer

CEIL(99672.8591) = 99673
FLOOR(99672.8591) = 99672

Reader 03-27-2021 04:07 PM

oracle

correct answer is ceil

floor ; it rounds the number to lowest
ceil : rounds the number to highest
trunc : rounds the number to lowest

Prasanth Pogiri 03-24-2019 07:29 AM

FLOOR(x)

FLOOR(x) gets the largest integer less than or equal to x.

Prajakta Pandit 02-15-2017 01:24 AM

Correct urseif

Answer will be Ceil not floor

Sanjeev 02-5-2017 06:31 AM

oracle

good question

sai 02-3-2017 03:22 AM

plsql

good

kartik sahoo 08-13-2014 03:03 AM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement