Answer:
Please see the attached file for the complete answer.
Explanation:
Answer:
0.00650 Ib s /ft^2
Explanation:
diameter ( D ) = 0.71 inches = 0.0591 ft
velocity = 0.90 ft/s ( V )
fluid specific gravity = 0.96 (62.4 ) ( x )
change in pressure ( P ) = 0 because pressure was constant
viscosity = (change in p - X sin∅ )
/ 32 V
= ( 0 - 0.96( 62.4) sin -90 ) * 0.0591 ^2 / 32 * 0.90
= - 59.904 sin (-90) * 0.0035 / 28.8
= 0.1874 / 28.8
viscosity = 0.00650 Ib s /ft^2
C it would be c because that has more and the others have less
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.