Multiple choice How can the under given statement be written?If (p<100) Flag = 10; Else Flag = 20; flag=(p<100) ? 10 : 20; flag=(p<100) : 10 ? 20 ; flag=(p<100) : 20 ? 10 ; flag=(p<100) ? 20 : 10; Reveal answer Fill a bubble to check yourself A Correct answer Explanation The ternary operator in Java follows the syntax: condition ? expression_if_true : expression_if_false. Option A correctly maps the if-else logic to this format.