Basics of python
Chapter 2 - Variables and data types
Login
New update is available. Click here to update.
Problem
Implicit Type Conversion I
Easy
0/10
Problem statement
Send feedback
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
Pick one correct answer from below
< class 'float' >
< class 'complex' >
< class 'str' >
< class 'int' >
Settings