Answer:
what I'm confused ???????
Explanation:
?
Answer:
The correct answer is A.
Explanation:
I put D from the answer above and got it wrong and it said A was the correct answer. haha :)
If you have machines doing jobs, fewer staff is needed, therefore the costs are LESS.
Hope I helped!
What can be done is to provide the computers with remote access.
<h3>What is Remote access?</h3>
This involves the use of softwares that enables a single computer to view
or control others from any area.
Adopting this method means all the workers will have access to a
consistent desktop experience no matter which computer they sign in to
for work.
Read more about Remote access here brainly.com/question/26327418
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)