What are the values stored in variables a and b:
i. double a = Math.sqrt(16);
ii. double b = Math.pow(3,2);
Answers
Answered by
0
Answer:
i. 4.0
ii.9.0
Explanation:
Since default value of Math.pow and Math.sqrt is double , the return type is double
Similar questions