Answer:
Explained
Explanation:
This situation can occur because of various factors such as:
- Gradual deterioration of lubrication and coolant.
- change of environmental condition such as temperature, humidity, moisture, etc.
- Change in the properties of incoming raw material
- An increase or decrease in the temperature of the heat treating operation
- Debris interfering with the manufacturing process.
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:
2ib
Explanation:
if you divide 10 divided by 2 it gives you 5 and then subtract it by 2.2 = 2.8
there goes your answer.
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.