Answer:
i don't know if this help tell me if i am wrong
Explanation:
Gravity is the force that pulls all elements of matter together. Matter refers to things you can physically touch. The more matter there is, the greater the amount of gravity or force. This means that the Earth or other planets have a great deal of pull and that everything on Earth is pulled back to Earth.
Some examples of the force of gravity include:
The force that holds the gases in the sun.
The force that causes a ball you throw in the air to come down again.
The force that causes a car to coast downhill even when you aren't stepping on the gas.
The force that causes a glass you drop to fall to the floor.
Answer:
as slated in your solution, if delay time is 2.30 mins, hence 9 vehicle will be on queue as the improved service commenced.
Explanation:
4 vehicle per min, in 2 mins of the delay time 8 vehicles while in 0.3 min average of 1 vehicle join the queue. making 9 vehicle maximum
That’s too hard for me lol oof
The C++ code that would draw all the iterations in the selection sort process on the array is given below:
<h3>C++ Code</h3>
#include <stdio.h>
#include <stdlib.h>
int main() {
int i, temp1, temp2;
int string2[16] = { 0, 4, 2, 5, 1, 5, 6, 2, 6, 89, 21, 32, 31, 5, 32, 12 };
_Bool check = 1;
while (check) {
temp1 = string2[i];
temp2 = string2[i + 1];
if (temp1 < temp2) {
string2[i + 1] = temp1;
string2[i] = temp2;
i = 0;
} else {
i++;
if (i = 15) {
check = !check;
}
}
}
return 0;
}
Read more about C++ programming here:
brainly.com/question/20339175
#SPJ1