Computer Science
Explain the term type casting.
Values & Data Types Java
2 Likes
Answer
The process of converting one predefined type into another is called type casting.
Answered By
1 Like
Related Questions
Predict the return data type of the following:
float m; p = m/3*(Math.pow(4,3)); System.out.println(p);
Differentiate single precision and double precision data value.
A non-primitive data type is also referred to as reference type. Explain Why?
Predict the return data type of the following:
int p; double q; r = p+q; System.out.println(r);