Complete Question
The complete question is shown on the first uploaded image.
Answer:
The answer is shown on the second uploaded image
Explanation:
The explanation is also shown on the second uploaded image
Answer:
conduction occurs when a substance is heated
Explanation:
Answer:
S = 0.5 km
velocity of motorist = 42.857 km/h
Explanation:
given data
speed = 70 km/h
accelerates uniformly = 90 km/h
time = 8 s
overtakes motorist = 42 s
solution
we know initial velocity u1 of police = 0
final velocity u2 = 90 km/h = 25 mps
we apply here equation of motion
u2 = u1 + at
so acceleration a will be
a =
a = 3.125 m/s²
so
distance will be
S1 = 0.5 × a × t²
S1 = 100 m = 0.1 km
and
S2 = u2 × t
S2 = 25 × 16
S2 = 400 m = 0.4 km
so total distance travel by police
S = S1 + S2
S = 0.1 + 0.4
S = 0.5 km
and
when motorist travel with uniform velocity
than total time = 42 s
so velocity of motorist will be
velocity of motorist = 
velocity of motorist =
velocity of motorist = 42.857 km/h
Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.