Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

question 18 consider the following code: is_fruit = \true\ is_vegetable…

Question

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

Explanation:

Brief Explanations

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.

Answer:

A. Boolean