Predict the return data type of :float m; p= m/3*( Math.pow(4,3));System.out.println(p);
Answers
Answered by
18
the return data type will be the data type of the variable 'p'
the data type of 'p' will have to be double.
math.pow returns double value
hope it helps
mark as brainliest
Similar questions