Perform the following:
Assign the value "TEST" to a variable with the requisite data type.
5 Likes
String str = "TEST";
Answered By
2 Likes
Explain the term type casting?
Assign the value of pie (3.142) to a variable with the requisite data type.
Predict the return data type in the following expressions:
int p; double q;r = p+q;
float m;p = m/3*(Math.pow(4,3));