Answer:
Jordan has more green paints
Explanation:
Given


Required
Which paint does he have more?
For better understanding, it's better to convert both measurements to decimal.
For the green paint:


For the blue paint:


By comparison:

<em>This means that Jordan has more green paints</em>
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
Problem Solvers
Explanation:
Engineers find problems in the world, and then they find solutions for them.
Answer:
Option D. w1[x] w2[u] w2[y] w1[y] w3[x] w3[u] w1[z]
Explanation:
The execution in the option D is correct. This is because there is more than one reasonable criterion.
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<