Computer Science, asked by 9c34madhubala, 18 days ago

predict the return data types of the following:
( i ) int p; double q;
r = p+q;
system. out . printIn ( r );

( ii ) float m
p = m/3* ( Math . paw (4,3));
system.out . printIn ( p )​

Answers

Answered by mantasha1270
0

Explanation:

float m; p=m*1.0/3*(Math.pow(4,3)); System.out.println(p); Hence, we have to return the value of p and the data type of p will be double.

Similar questions