Advertisements
Advertisements
Question
Functions are the built-in modules that can be used in our program to perform a specific operation. There are some mathematical functions that are used for specific functions. For example, we can use Math.sqrt() function to return square root of a positive number, Math.random() and Math.ceil() to return random number in a range of numbers to return the next higher integer number.
Based on the above discussion, answer the following questions:
- What will be displayed, if the following statement is executed?
System.out.println(Math.sqrt(−25));
- Infinite
- −5.2
- NaN
- Logical error
- Math.random( ) function returns a random number in the range:
- between 0 and 1
- between −1 to 0
- between −1 to 1
- None of the above
- Which of the following function will return the next higher integer number?
- Math.max()
- Math.min()
- Math.floor()
- Math.ceil()
- Which of the following statement is true for Math.max()?
- It will always result in int type value.
- It will always result in double type value.
- The resultant data type will depend upon the type of arguments.
- It will return float type, if arguments are double type.
Answer in Brief
Solution
- iii. Nan
- i. between 0 and 1
- iv. Math.ceil()
- iii. The resultant data type will depend upon the type of arguments.
shaalaa.com
Is there an error in this question or solution?