Advertisements
Advertisements
Question
What values will be stored in the variables p and q after executing the following code?
double a = −6.35; double b = 14.74;
double p = Math.abs(Math.ceil(a));
double q = Math.rint(Math.max(a, b));
Answer in Brief
Solution
p = 6.0
q = 15.0
shaalaa.com
Is there an error in this question or solution?