What is output of MS-Excel function = CONVERT (1, "in", "m")?

What is output of MS-Excel function = CONVERT (1, "in", "m")? Correct Answer 0.0254

The CONVERT function converts a number in one measurement system to another. For example, you can use CONVERT to convert feet into meters, pounds into kilograms, gallons into litters, and for many other unit conversions. 

  • The CONVERT function is case-sensitive.
  • CONVERT will return the error when a unit string is not recognized.
  • A number of measurement units were added to CONVERT in Excel 2013

Syntax 

=CONVERT (number, from_unit, to_unit)

  • number - The numeric value to convert.
  • from_unit - The starting units for number.
  • to_unit - The ending units for the result.

1 inch = 0.0254 meter 

So the answer is option A

Related Questions

Consider the following C function. void convert (int n) { if (n < 0) printf (“ % d”, n); else { convert(n / 2); printf (“ % d”, n % 2); } } Which one of the following will happen when the function convert is called with any positive integer n as argument?
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);
}