Answer:
price float(price)
Explanation:
There are four basic type of data type use in the programming to declare the
variable.
1. int: Â it is used for integer values.
2. float: Â it is used for decimal values.
3. char: Â it is used for character values
4. Boolean: it is used for true or false.
in the question, the one option contain the data type float (price float(price)). So, it store the value in decimal.
price int(price): Â it store the value in integer.
price decimal(price): Â it is wrong declaration of variable. their is no data type in the programming which name is decimal.
price price(decimal): Â it is wrong declaration of variable. their is no data type in the programming which name is price.