When you assign a value of one data type to a variable of another data type, visual basic attempts to perform <u>Implicit </u>type conversion.
Implicit kind Conversion is also called 'automatic type conversion'. it is completed by means of the compiler on its own, with no external trigger from the user. It commonly takes place whilst in an expression multiple data kind is present.
As an instance, a variable of type long (64-bit integer) can store any value that an int (32-bit integer) can save. within the following example, the compiler implicitly converts the fee of num on the right to a kind long before assigning it to bigNum.
In implicit typecasting, the conversion includes a smaller statistics type to the bigger kind length. as an example, the byte datatype implicitly typecast into brief, char, int, lengthy, flow, and double. The procedure of converting the decreased data type to that of a higher data type is referred to as Widening.
Learn more about Implicit kind Conversion here: brainly.com/question/13830482
#SPJ4