Computer Applications
State whether the following statement is True or False :
The relational operators always result in terms of 'True' or 'False'.
Java Operators
29 Likes
Answer
True
Answered By
1 Like
Related Questions
Rewrite the following using ternary operator:
if(income < 10000) tax = 0; else tax = 12;Rewrite the following using ternary operator:
if(a > b) { if (a > c) g = a; else g = c; } else if (b > c) g = b; else g = c;Rewrite the following using ternary operator:
if (p >= 4750) k = p * 5 / 100; else k = p * 10 / 100;Rewrite the following using ternary operator.
if(n1 > n2) r = true; else r = false;