

Hi,
Here is the answer.
Numeric promotion is the conversion of a smaller numeric type to a larger numeric type,so that integer and floating-point operations may take place.
Numeric promotions are used to convert the operands in a numeric expression to a common type before an operation is performed between the operands. Numeric promotion is a property of the specific definitions of the built-in operations and not a Java language feature. It is applied to the operands of an arithmetic operator.
In numerical promotion,byte, char, and short values are converted to int values. The int values are also onvertedto long values, if necessary.
Thanks. The long and float values are converted to double values, asrequired.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.