KnowledgeBoat Logo

Output Questions for Class 10 ICSE Computer Applications

Rewrite the following using ternary operator:

if(income < 10000)
    tax = 0;
else
    tax = 12;

Java

Java Operators

ICSE

79 Likes

Answer

tax = income < 10000 ? 0 : 12;

Answered By

37 Likes