Which is an example of implicit type conversion ?
6 + 2
6.0 + 2.0
7.0 + 5
None of the above
in case of 7.0 + 5 , python automatically converts integer type 5 to float type 5.0 which is know as implicit conversion
Comment here: