Answer:
1. 
2. 
Explanation:
1.
Given:
- height of the window pane,

- width of the window pane,

- thickness of the pane,

- thermal conductivity of the glass pane,

- temperature of the inner surface,

- temperature of the outer surface,

<u>According to the Fourier's law the rate of heat transfer is given as:</u>

here:
A = area through which the heat transfer occurs = 
dT = temperature difference across the thickness of the surface = 
dx = t = thickness normal to the surface = 


2.
- air spacing between two glass panes,

- area of each glass pane,

- thermal conductivity of air,

- temperature difference between the surfaces,

<u>Assuming layered transfer of heat through the air and the air between the glasses is always still:</u>



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:
a)
, b)
,
,
, c)
,
,
, 
Explanation:
a) The total number of users that can be accomodated in the system is:


b) The length of the side of each cell is:


Minimum time for traversing a cell is:



The maximum time for traversing a cell is:


The approximate time is giving by the average of minimum and maximum times:


c) The total number of users that can be accomodated in the system is:


The length of each side of the cell is:


Minimum time for traversing a cell is:



The maximum time for traversing a cell is:


The approximate time is giving by the average of minimum and maximum times:


Answer: OHMMETER & MEGOHMMETER:
Explanation: The ohmmeter measures circuit resistance; the megohmmeter measures the high resistance of insulation. A meter used to measure electric current. It is connected as part of a circuit.