question 19\nconsider the following code:\nis_fruit = \true\\nis_vegetable = 0\nis_dessert = false\nwhat is…

question 19\nconsider the following code:\nis_fruit = \true\\nis_vegetable = 0\nis_dessert = false\nwhat is the data - type of is_fruit?\no integer\no boolean\no string

question 19\nconsider the following code:\nis_fruit = \true\\nis_vegetable = 0\nis_dessert = false\nwhat is the data - type of is_fruit?\no integer\no boolean\no string

Answer

Answer:

C. string

Brief Explanation:

The variable is_fruit is enclosed in double - quotes, which in programming indicates it is a string data type, even though its value looks like a boolean - like term.