Question:Choose another way to write x ? a = b : a = c
A if ('x') { a = b; } else { a = c; } B if (x) { a = c; } else { a = b; } C x : a = c ? a = b D None of above
+ AnswerD
+ Report