Discussion :: Java.lang Class
-
Which of the following are valid calls to Math.max?
- Math.max(1,4)
- Math.max(2.3, 5)
- Math.max(1, 3, 5, 7)
- Math.max(-1.5, -2.8f)
Answer : Option A
Explanation :
(1), (2), and (4) are correct. The max() method is overloaded to take two arguments of type int, long, float, or double.
(3) is incorrect because the max() method only takes two arguments.
Be The First To Comment