KnowledgeBoat Logo

Computer Science

Define Implicit type conversion with an example.

Values & Data Types Java

2 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;

Answered By

1 Like


Related Questions