Advertisements
Advertisements
Question
Predict the return data type of 'r' and 'n' from the snippet:
- int p;
- float m;
r = p + m;
n = m / 3 * (Math.pow(4, 3));
System.out.println(r);
System.out.println(n);
Answer in Brief
Solution
Return type of r is float, and n is double.
shaalaa.com
Is there an error in this question or solution?
Chapter 1.03: Values and Data Types - EXERCISES [Page 33]