Answer:
8/3 hours
Explanation:
For this question, let us say that 1 job contains 240 files
Computer X does this job in 4 hours
Computer Y does the same job in 8 hours
All we need to find is how long it will take both computers to finish the job
Now we apply the basic combined work formula, which is
Combined Time = (time a * time b)/(time a + time b)
And we known that time a = 4 hrs,
We then substitute this values into the equation to get
Combined time = (4*8)/(4+8)
= 32/12
= 8/3 hours
Answer:
I love Chipotle!
Explanation:
I don't know, maybe because the food there is really good.
Answer:
This is using c++ syntax, you might need to make slight adjustment for other languages.
First activity:
string firstSnack = "chips";
string secondSnack = "pizza";
string thirdSnack = "apples";
string bestSnack = firstSnack;
bestSnack = secondSnack;
Second activity:
double apple = 0.5;
double banana = 0.75;
double orange = 1.43;
double total = apple + banana + orange;
Explanation:
When first declaring a variable, you want to specify the type (such as int, double, string, bool, etc.) and then the name. You can set the variable value in the declaration, or you can set it to a value later in the program by not having the equals sign and whatever comes next.
The correction is *regular.