Answer with Explanation:
The crown will be pure if it's specific gravity is 19.3
Now by definition of specific gravity it is the ratio between the weight of an object to the weight of water of equal volume
Since it is given that the weight of the crown is 11.8 N we need to find it's volume
Now According to Archimedes principle when the crown is immersed into water the water shall exert a force in upwards direction on the crown with a magnitude equaling to weight of the water displaced by the crown
Mathematically this is the difference between the weight of the crown in air and weight when immersed in water
Thus Buoyant force is 
Now by Archimedes principle This force equals in magnitude to the weight of water of same volume as of the crown
Thus the specific gravity of the crown equals

As we see that the specific gravity of the crown material is less than that of pure gold hence we conclude that it is impure.
Fill it out without telling ur employer as that may cause backlash and have an osha certified employee come check out ur work or job site
Answer:
D. N= 11. 22 rad/s (CW)
Explanation:
Given that
Form factor R = 8
Speed of sun gear = 5 rad/s (CW)
Speed of ring gear = 12 rad/s (CW)
Lets take speed of carrier gear is N
From Algebraic method ,the relationship between speed and form factor given as follows

here negative sign means that ring and sun gear rotates in opposite direction
Lets take CW as positive and ACW as negative.
Now by putting the values


N= 11. 22 rad/s (CW)
So the speed of carrier gear is 11.22 rad/s clockwise.
<u>Explanation:</u>
% Gravel = 100 - 72% = 28%
% Sand = 100 - 28 - 15 = 57%
% Fires = 100 - 0 - 28 - 57 = 15%

The soil is poorly graded soil.
Answer:
Below is the desired C++ program for the problem. Do feel free to edit it according to your preference
Explanation:
#include <iostream>
#include <vector>
using namespace std;
void ExactChange(int userTotal, vector<int> &coinVals) {
coinVals.reserve(5);
coinVals[0] = userTotal / 100;
userTotal %= 100;
coinVals[1] = userTotal / 25;
userTotal %= 25;
coinVals[2] = userTotal / 10;
userTotal %= 10;
coinVals[3] = userTotal / 5;
userTotal %= 5;
coinVals[4] = userTotal;
}
int main() {
vector<int> coins;
int value;
cin >> value;
if (value <= 0) {
cout << "no change" << endl;
} else {
ExactChange(value, coins);
if (coins[0] != 0) cout << coins[0] << " " << (coins[0] == 1 ? "dollar" : "dollars") << endl;
if (coins[1] != 0) cout << coins[1] << " " << (coins[1] == 1 ? "quarter" : "quarters") << endl;
if (coins[2] != 0) cout << coins[2] << " " << (coins[2] == 1 ? "dime" : "dimes") << endl;
if (coins[3] != 0) cout << coins[3] << " " << (coins[3] == 1 ? "nickel" : "nickels") << endl;
if (coins[4] != 0) cout << coins[4] << " " << (coins[4] == 1 ? "penny" : "pennies") << endl;
}
return 0;
}