Answer:
Option ‘a’ is the cheapest for this house.
Explanation:
Cheapest method of heating must have least cost per kj of energy. So, convert all the energy in the same unit (say kj) and take select the cheapest method to heat the house.
Given:
Three methods are given to heat a particular house are as follows:
Method (a)
Through Gas, this gives energy of amount $1.33/therm.
Method (b)
Through electric resistance, this gives energy of amount $0.12/KWh.
Method (c)
Through oil, this gives energy of amount $2.30/gallon.
Calculation:
Step1
Change therm to kj in method ‘a’ as follows:

$/kj.
Step2
Change kWh to kj in method ‘b’ as follows:

$/kj.
Step3
Change kWh to kj in method ‘c’ as follows:

$/kj.
Thus, the method ‘a’ has least cost as compare to method b and c.
So, option ‘a’ is the cheapest for this house.
Answer:
The reaction at support B
Rb= 235440N
The reaction at support C
RC= 29430N
Explanation : check attachment
54 volts
Ohms law. E= I x R
Answer:
insert (array[] , value , currentsize , maxsize )
{
if maxsize <=currentsize
{
return -1
}
index = currentsize-1
while (i>=0 && array[index] > value)
{
array[index+1]=array[index]
i=i-1
}
array[i+1]=value
return 0
}
Explanation:
1: Check if array is already full, if it's full then no component may be inserted.
2: if array isn't full:
- Check parts of the array ranging from last position of range towards initial range and determine position of that initial range that is smaller than the worth to be inserted.
- Right shift every component of the array once ranging from last position up to the position larger than the position at that smaller range was known.
- assign new worth to the position that is next to the known position of initial smaller component.