13. What will be returned by Python as result of following statements?

a)
>>>type(0)
# output
int
b)
>>>type(int(0))
# output
int
c)
>>>type(int('0'))
# output
int
d)
>>>type('0')
# output
str
e)
>>>type(1.0)
# output
float
f)
>>>type(int(1.0))
# output
int
g)
>>>type(float(0))
# output
float
h)
>>>type(float(1.0))
# output
float
i)
>>>type(3/2)
# output
float