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
Related Questions
A store has purchased some cola cans of various brands. It purchased 50 cans @ ₹15 per can, 30 cans @ ₹20 per can and 40 cans @ ₹21 per can. Write a Java program to compute how much amount did the store pay.
if (a>b&&b>c) then largest number is:
- b
- c
- a
- wrong expression
Write a Java program to obtain principal amount, rate of interest and time from user and compute simple interest.
Write the Java expression for the following: