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:
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 <<
Answer:
COMMON ENGINEERING DOCUMENTS
Inspection or trip reports.
Research, laboratory, and field reports.
Specifications.
Proposals.
Progress reports.
ect...
Explanation:
The general lighting load for a two-story office building that measures 125 feet by 150 feet is 112, 500 sq ft.
<h3>What is lighting load?</h3>
Lighting loads are the energy used to power electric lights and they make up nearly a third of US commercial building energy use.
Lighting load = n(LW)
where;
- L is length of the building
- W is width of the building
- n is number of story building
For one story building, = 3
For two story building, n = 6
Lighting load = 6 x 125 x 150 = 112, 500 sq ft.
Learn more about lighting load here: brainly.com/question/14070748
#SPJ12