Computer Applications
What is meant by implicit and explicit type conversion? Explain with an example.
Values & Data Types Java
52 Likes
Answer
In implicit type conversion, the result of a mixed mode expression is obtained in the higher most data type of the variables without any intervention by the user. Example:
int a = 10;
float b = 25.5f, c;
c = a + b;
In explicit type conversion, the data gets converted to a type as specified by the programmer. For example:
int a = 10;
double b = 25.5;
float c = (float)(a + b);
Answered By
37 Likes