Computer Applications
What will be the output of Math.abs(-0)?
- 0.0
- 0
- -0
- +0
Java Math Lib Methods
3 Likes
Answer
0
Answered By
1 Like
Related Questions
What will be the output of Math.floor(-20.10)?
What will be the output of Math.round(0.5)?
Given the following statements:
int min = 1, max = 10; int range = max - min + 1; int num = (int) (range * Math.random() + min);The value of num will be in integer such that ………..
How do user-defined methods differ from library methods?