Answer:
8 to 10 times
Explanation:
For dry road
u= 15 mph ( 1 mph = 0.44 m/s)
u= 6.7 m/s
Let take coefficient of friction( μ) of dry road is 0.7
So the de acceleration a = μ g
a= 0.7 x 10 m/s ² ( g=10 m/s ²)
a= 7 m/s ²
We know that
v= u - a t
Final speed ,v=0
0 = 6.7 - 7 x t
t= 0.95 s
For snow road
μ = 0.4
de acceleration a = μ g
a = 0.4 x 10 = 4 m/s ²
u= 30 mph= 13.41 m/s
v= u - a t
Final speed ,v=0
0 = 30 - 4 x t'
t'=7.5 s
t'=7.8 t
We can say that it will take 8 to 10 times more time as compare to dry road for stopping the vehicle.
8 to 10 times
Answer: Exploration includes plethora of activities and depend upon the kind of exploration a person is doing. But most include some of the basic activities like research , investigation, planning and execution.
Suppose we want to explore new petroleum sites then we would have to start with studying the geography of that area, then according to our research we will analyse the hot spots or the sector where probability of finding of oil field is highest, post that appropriate man power is skilled professionals, tools and machinery will be brought at the site so that execution can take place.
Answer:
A force must s applied to a wall or roof rafters to add strength and keep the building straight and plumb
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.