Question:Which operator is used to perform a ternary conditional operation?
A && B ? : C if D switch
+ AnswerB
+ ExplanationThe ternary operator allows for shorthand conditional expressions.
+ Report