Answer:
the crown is false densty= 12556kg/m^3[/tex]
Explanation:
Hello! The first step to solve this problem is to find the mass of the crown, this is found using the weight of the crown in the air by means of the equation for the weight.
W=mg
W=weight(N)=31.4N
M=Mass
g=gravity=9.81m/S^2
solving for M
m=W/g

The second step is find the volume of crown remembering that when an object is weighed in the water the result is the subtraction between the weight of the object and the buoyant force of the water which is the product of the volume of the crown by gravity by density of water

Where
F=weight in water=28.9N
m=mass of crown=3.2kg
g=gravity=9.81m/S^2
α=density of water=1000kg/m^3
V= crown´s volume
solving for V

finally, we remember that the density is equal to the index between mass and volume

To determine the density of the crown without using the weight in the water and with a bucket we can use the following steps.
1.weigh the crown in the air and find the mass
2. put water in a cylindrical bucket and measure its height with a ruler.
3. Put the crown in the bucket and measure the new water level with a ruler.
4. Subtract the heights, and find the volume of a cylinder knowing the difference in heights and the diameter of the bucket, in order to determine the volume of the crown.
5. find density by dividing mass by volume
Answer:
Outdoors
Explanation:
Construction workers perform outdoors.
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.
Answer:
Detailed working is shown
Explanation:
The attached file shows a detailed step by step calculation..