Advertisements
Advertisements
प्रश्न
Which of the following mathematical methods returns only an integer?
विकल्प
Math.ceil(n)
Math.sqrt(n)
Math.floor(n)
Math.round(n)
उत्तर
Math.round(n)
Explanation:
This method rounds up/down a supplied decimal value to a whole number. For example, Math.round(5.5) = 6, but Math.round(5.4) = 5.
APPEARS IN
संबंधित प्रश्न
Name any two library packages.
Give the output of the following Math functions:
(i) Math.ceil(4.2)
(ii) Math.abs(-4)
Write the return type of the following library functions:
- isLetterOrDigit(char)
- replace(char, char)
Give the output of the following :
(i) Math.floor (- 4.7)
(ii) Math.ceil(3.4) + Math.pow(2,3)
Name the mathematical function which is used to find sine of an angle given in radians.
Name a string function which removes the blank spaces provided in the prefix and suffix of a string.
What value will Math.sqrt (Math.ceil (15.3)) return?
What is the output of Math.ceil(5.4) + Math.ceil(4.5)?
Write the java expression for `root3x + sqrty`