Respuesta :
Answer: The answer is C). The second operand is the result value if the condition evaluates to false
Explanation: The conditional operator (? :) is a ternary operator (it takes three operands). The result of the conditional operator is the result of whichever operand is evaluated (the second or the third). Only one of the last two operands is evaluated in a conditional expression. The conditional operator works as such if the first operand evaluates to true (1), the second operand is evaluated while the third is evaluated if the first operand evaluates to false (0).
Answer:
The answer is C
Explanation:
The second operand is the result value if the condition evaluates to false.