Computer Applications
State whether the following statement is True or False :
The return data type of Math.log() is double.
Java Math Lib Methods
26 Likes
Answer
True
Answered By
3 Likes
Related Questions
Given: double k = Math.rint(-9.4) + Math.sqrt(9.0);
What will be the final value stored in the variable k?- -5.0
- -6.0
- -6.4
- -5.4
Given double b = Math.ceil(3.4) + Math.pow(2,3);
What will be the final value stored in the variable b?- 12.0
- 11.0
- 11.4
- 11.5
State whether the following statement is True or False :
Java.Math class is used for different mathematical functions.
State whether the following statement is True or False :
The output of Math.abs(-99.99) is 100.00.