Boolean variables are commonly used to indicate whether a specific condition exists. For example, variables such as: paid_tax = True; gotMilk = False; won = True; input_valid = False; etc. These Boolean variables are known as: ______ . Hint: Waving in the breeze.

Respuesta :

Answer:

Flags.

Explanation:

Boolean variable can only represent one of the two values and those are true and false.Boolean variables interprets 0 as false and any value other than 0 is represented as true. Flags are used to represent whether a specific condition exists or not.Which help us in many ways.

Hence the answer is flags.