question 18 consider the following code: is_fruit = \true\ is_vegetable = 0 is_dessert = false what is the…

question 18 consider the following code: is_fruit = \true\ is_vegetable = 0 is_dessert = false what is the data type of is_dessert?

question 18 consider the following code: is_fruit = \true\ is_vegetable = 0 is_dessert = false what is the data type of is_dessert?

Answer

Answer:

A. Boolean

Brief Explanation:

In programming, False is a boolean - value. Boolean data types have two possible values: True and False. Here, is_dessert is assigned False, so its data type is Boolean.