Computer Applications
If the value of basic=1500, what will be the value of tax after the following statement is executed?
tax = basic > 1200 ? 200 :100;
tax = basic > 1200 ? 200 :100;
Java Operators
ICSE 2019
38 Likes
Answer
Value of tax will be 200. As basic is 1500, the condition of ternary operator — basic > 1200 is true. 200 is returned as the result of ternary operator and it gets assigned to tax.
Answered By
20 Likes