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
91 Likes
Answer
tax = income < 10000 ? 0 : 12;
Answered By
42 Likes
Rewrite the following using ternary operator:
if(income < 10000)
tax = 0;
else
tax = 12;
91 Likes
tax = income < 10000 ? 0 : 12;
Answered By
42 Likes