Plans
Dashboard
Daily & Speed
Quant
Verbal
DILR
Compete
Free Stuff
Functions
MODULES
CONCEPTS & CHEATSHEET
SPEED CONCEPTS
PRACTICE
Greatest integer function of x, also denoted as [x], returns the greatest integer less than or equal to x. For instance, [1] = 1 , [1.2] =1 , [1.99] = 1,[2] = 2 This is also called a floor function. | ![]() |
Least integer function of x, returns the least integer greater than or equal to x. For instance, LIF(1) = 1 , LIF(1.2) = 2 , LIF(1.99) = 2, LIF(2) = 2 This is also called a ceiling function. |
![]() |