KnowledgeBoat Logo

Computer Applications

Explain the term type conversion. How is implicit conversion different from explicit conversion?

Values & Data Types Java

ICSE

112 Likes

Answer

The process of converting one predefined type into another is called type conversion. In an implicit 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. For example:

int a = 10;
float b = 25.5f, c;
c = a + b;

In case of 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

70 Likes


Related Questions