Answer:
A calorimeter uses the temperature change of water to determine the <u>specific heat </u> of another substance.
Explanation:
<span>Pressure = force / area</span>
I assume that 350kg is the mass
Therefore,
350 x 9.8 (gravity) = 3430N
3430 / 1 = 3430Pa
3.43 KPa
Answer:
Explanation:
a. The amplitude is the measure of the height of the wave from the midline to the top of the wave or the midline to the bottom of the wave (called crests). The midline then divides the whole height in half. Thus, the amplitude of this wave is 9.0 cm.
b. Wavelength is measured from the highest point of one wave to the highest point of the next wave (or from the lowest point of one wave to the lowest point of the next wave, since they are the same). The wavelength of this wave then is 20.0 cm. or 
c. The period, or T, of a wave is found in the equation
were f is the frequency of the wave. We were given the frequency, so we plug that in and solve for T:
so
and
T = .0200 seconds to the correct number of sig fig's (50.0 has 3 sig fig's in it)
d. The speed of the wave is found in the equation
and since we already have the frequency and we solved for the wavelength already, filling in:
and
v = 50.0(20.0) so
v = 1.00 × 10³ m/s
And there you go!
Answer:
m = 3.91 kg
Explanation:
Given that,
Mass of the object, m = 3.74 kg
Stretching in the spring, x = 0.0161 m
The frequency of vibration, f = 3.84 Hz
When the object is suspended, the gravitational force is balanced by the spring force as :



k = 2276.52 N/m
The frequency of vibration is given by :



m = 3.91 kg
So, the mass of the object is 3.91 kg. Hence, this is the required solution.
Answer:
Explained
Explanation:
public int dimension(int [][]a2d,int nElements)
{
int count = 0;
for(int i = 0;i < a2d.length ; i++)
{
count = count + a2d[i].length;
}
return count;
}