What will be the output of the following Python code snippet?
print(type(5 / 2))
print(type(5 // 2))
1) float and int
2) float and float
3) int and int
4) int and float
1
1
2
3
3
4
4
2
What will be the output of the following Python code snippet?
print(type(5 / 2))
print(type(5 // 2))
1) float and int
2) float and float
3) int and int
4) int and float