20. What are the resultant data types, if the following implicit conversions are
19. Predict the return data type of the following:
(i) int p; double q;
(ii) float m;
p = m/3*(Math.pow(4,3));
r = p+q;
System.out.println(r);
System.out.println(p);
performed? Show the result with flow lines.
int i; float f; double d; char c; byte b;
(a) i + c/b;
(b) f/d + c*f;
(c) i + f - b*c;
(d) (f/i)*c + s;
(e) i + f- c + b/d;
(1) i/c + f/b;
No answers have been given to this question yet :(
Similar questions