1. Insert the correct syntax to convert x into a floating point number. x=10 x= ______(x).
Ans. float
2. Insert the correct syntax to convert x into a integer. x = 5.5 x = _________(x)
Ans. int
3. Divide 10 by 2, and print the result print(10 __ 2)
Ans. /

