Which of the following will compile correctly? *.
option is.
System.out.println( Math.max (x));
System.out.println ( Math.random (10,3)
System.out.println ( Math.min ("20")
System.out.println ( Math.sqrt(10);
Answers
Answered by
1
Answer:
Answered
Explanation:
System.out.println ( Math.sqrt(10));
will compile correctly.
Similar questions