Answer:
Explanation:
I will go straight to the code, and hope it didn't confuse you.
Here is it
public static void main(String[] args)
int [] x = new int [args.length]
for (int y = 0; y< args.length;yi++)
int[y] = (int) args [y]
Answer:
while (quantity >= 50)
Explanation:
Required
Stop when quantity is less than 50
To do this, we make use of a while statement and the syntax is:
while (condition){ }
If the loop should stop when quantity is less than 50; then it means the loop would continue when quantity is greater or equal to 50
So, we have:
while (quantity >= 50)
The answer would be B, for your computer is considered a client instead of server.