True/False
The statement:
if (a >= b) a++; else b--;
will do the same thing as the statement:
if (a < b) b--; else a++;.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q4: A truth table shows, for the
Q5: Every iterator<br>A) has a hasNext() method<br>B) has
Q6: The following code has a syntax error
Q7: Assume that count is 0, total is
Q8: Of the following if statements, which one
Q10: Code Segment Ch 05-1<br>if (a > 0)<br>
Q11: Which of the following are true about
Q12: Which type of GUI control would be
Q13: Assume that boolean done = false, int
Q14: What does the break statement do?<br>A) ends