which variable name is an example of mixedcase syntax?\nbreakfastfood\nbreakfastfood\nbreakfast_food\nbreakfa…

which variable name is an example of mixedcase syntax?\nbreakfastfood\nbreakfastfood\nbreakfast_food\nbreakfast_food
Answer
Brief Explanations:
Mixed - case syntax in variable names uses a combination of uppercase and lowercase letters without underscores. In "breakfastFood", the first word is in lowercase and the first letter of the second word is uppercase. "BreakfastFood" is in title - case (first letter of each word is uppercase), "BREAKFAST_FOOD" is in all - caps with underscores (usually used for constants), and "breakfast_food" uses only lowercase and underscores.
Answer:
A. breakfastFood