Taking online classes that are programmed for their schedule<span />
Answer:
public class ForLoops {
public static void main (String [] args) {
int countNum;
int i;
countNum = 3;
System.out.println("Ready!");
for(i = countNum;i>0;i--) {
System.out.println(i);
}
System.out.println("Go!");
}
}
Output:
A, I believe... I could be wrong
Answer:
a = 6, b = 0
Explanation:
The loop ran 3 times before b == 0. The statement "while ((b != 0)" is essentially saying: 'While b is not equal to 0, do what's in my loop'. Same general thing with "&& ((a / b) >= 0)". The "&&" is specifying that there should be another loop condition. The final part of the while loop states: 'as long as a ÷ b is greater than 0, do what's in my loop'. If all of these conditions are met, the loop will run. It will continue to run until at least one of the conditions are not met.
<em />
<em>Side note: I can't help but notice you posted the same question a while ago, so I just copied and pasted my previous response with some tweaking here and there. Hope this helps you! :)</em>
Answer:Private means: Belonging to, or for the use of, a particular person or group of people.
Confidential means: Intended to be kept secret. So, a private conversation would only be confidential if what is discussed is intended to be kept secret (from others).