Answer:
hsyghcjqg9ug9duyssatayfjzurldh
Answer:
wind vane if it can be used to show wind speed and the other is a
Explanation:
please mark 5 star if im right and brainly when ya can
Answer:
Q=36444.11 Btu
Explanation:
Given that
Initial temperature = 60° F
Final temperature = 110° F
Specific heat of water = 0.999 Btu/lbm.R
Volume of water = 90 gallon
Mass = Volume x density
Mass ,m= 90 x 0.13 x 62.36 lbm
m=729.62 lbm
We know that sensible heat given as
Q= m Cp ΔT
Now by putting the values
Q= 729.62 x 0.999 x (110-60) Btu
Q=36444.11 Btu
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}