Answer:
Carnot heat pump
Explanation:
Carnot heat pump is an ideal heat pump in which all processes are reversible and that consume minimum amount of work to and produces maximum amount of heating effect compare to all real engine.And that is why COP of Carnot heat pump is more as compare to real heat pump.
All real heat pump are not perfectly reversible heat pump So this is also called irreversible heat pump .Due to irreversibility the COP of irreversible heat pump is always less than the COP of Carnot heat pump.
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.
Answer:

Explanation:
The stress experimented by the circular bar is:
![\sigma = \left[\frac{2000\, lbf}{\frac{\pi}{4}\cdot (0.5\,in)^{2}}\right]\cdot \left(\frac{1\,kpsi}{1000\,psi} \right)](https://tex.z-dn.net/?f=%5Csigma%20%3D%20%5Cleft%5B%5Cfrac%7B2000%5C%2C%20lbf%7D%7B%5Cfrac%7B%5Cpi%7D%7B4%7D%5Ccdot%20%280.5%5C%2Cin%29%5E%7B2%7D%7D%5Cright%5D%5Ccdot%20%5Cleft%28%5Cfrac%7B1%5C%2Ckpsi%7D%7B1000%5C%2Cpsi%7D%20%5Cright%29)

The safety factor is:


Answer:
The value of R is 10101
Explanation:
As per the given data
D = 1000100100
G = 100101
Redundant bit = 6-bits - 1-bit = 5-bits
No add fice zero to D
D = 100010010000000
Now calculate R as follow
R = D / G
R = 100010010000000 / 100101
R = 10101
Workings are attached with this question
Answer:
(b)False
Explanation:
defined as
=
Where x is the distance from centroidal x-axis
y is the distance from centroidal y-axis
dA is the elemental area.
The product of x and y can be positive or negative ,so the value of
can be positive as well as negative .
So from the above expressions we can say that the product of
is different from
.