Update appNew update is available. Click here to update.

Implicit Type Conversion I

Easy
0/10

Problem statement

What will be the output of the following code?

a = 7
b = 8
c = a * b
print(type(c))
Options: Pick one correct answer from below