Suppose income is 4001, what is the output of the following…
Suppose income is 4001, what is the output of the following code?if (income > 3000) { System.out.println(“Income is greater than 3000”);}else if (income > 4000) { System.out.println(“Income is greater than 4000”);}
Read Details