Computer Science, asked by muktimajumder74, 11 months ago

If the value of basic =1500, what will be the value of tax after the following statement is executed?
tax=basic >1200? 200:100
Ans is 200
I need to know how did they get the answer (200) ? (working of the sum)

Answers

Answered by yobro10
4

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.

Similar questions