Answer:
I think the answer would be a smartphone, hope this helps! Comment if I am wrong
Computers can help organize the workplace and it can also help communications between work members. This is the vague explanation of how it impacts businesses. However, different businesses have different uses for computers and other technologies.
<span>A real-time operating system is a very fast, relatively small os. it is designed to respond to hardware and program requests almost instantly.</span>
I will use 0b to refer to binary numbers: ex: 0b1 = 1, 0b10 = 2
0b100 = 4 and 0b11 = 3
4+3 = 7
convert 7 to binary and you get 111.
Hope this helps, and May the Force Be With You!
<span>-Jabba</span>
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)