Question 5
Consider the below Vue class binding and select the most appropriate option(s)
The class "active" will be applied to the div element only when the variable "isActive" evaluates to true.
The class "text-bold" will always be applied to the div element regardless of the value of "isBold".
The class "hidden" will be applied to the div element when the variable "isVisible" evaluates to false.
All three classes will be applied simultaneously if "isActive", "isBold", and "isVisible" are all true.