Answer:
void bubble_sort( int A[ ], int n ) {
int temp;
for(int k = 0; k< n-1; k++) {
// (n-k-1) to ignore comparisons of already compared iterations
for(int i = 0; i < n-k-1; i++) {
if(A[ i ] > A[ i+1] ) {
// swapping occurs here
temp = A[ i ];
A[ i ] = A[ i+1 ];
A[ i + 1] = temp ;
}
}
}
}
Answer:
a) 0.26
b) 1077 MPa
Explanation:
a) The following equation can be used to determine the volume fraction:




b) Tensile strength can be found by using the following equation:
MPa
Answer:
The Purpose of Refrigeration. The fundamental reason for having a refrigerator is to keep food cold. Cold temperatures help food stay fresh longer. The basic idea behind refrigeration is to slow down the activity of bacteria (which all food contains) so that it takes longer for the bacteria to spoil the food.
Explanation: