Answer: Photo lines
Explanation: made more sense
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;
}
Answer:
ΔQ = 4930.37 BTu
Explanation:
given data
height h = 8ft
Δt = 8 hours
length L = 24 feet
R value = 16.2 hr⋅°F⋅ft² /Btu
inside temperature t1 = 68°F
outside temperature t2 = 16°F
to find out
number of Btu conducted
solution
we get here number of Btu conducted by this expression that s
......................1
here A is area that is = h × L = 8 × 24 = 1492 ft²
put here value we get
solve it we get
ΔQ = 4930.37 BTu