What is the output of MS-Excel function  =CEILING(40, 3)?

What is the output of MS-Excel function  =CEILING(40, 3)? Correct Answer 42

The Excel CEILING function rounds a given number up to the nearest specified multiple. CEILING works like the MROUND function, but CEILING always rounds up.

Syntax 

=CEILING (number, significance)
Arguments 
  • number - The number that should be rounded.
  • significance - The multiple to use when rounding.

Related Questions

What is the output after compile and run the following code ? int Output = 10;
boolean b = false;
if((b == true) && ((Output += 10) == 20))
{
System.out.println("We are equal " + Output);
}
else
{
System.out.println("Not equal! " + Output);
}