Over 200 mph generally now I says 300 mph
Answer:
Safety measures are as follows;
Explanation:
- Hold the delicate instruments cautiously to use them.
- Require appropriate use of the equipment in the kitchen.
- Users should remove these defective instruments or discard of them.
- During and before use, check that perhaps the resources that will be used are indeed safe.
- In a cold and dry spot, all equipment must be kept.
Life can be about anything........
Answer:
Answer explained below
Explanation:
void bubbleSort(int X[], int Y[], int n)
{
int i, j;
for (i = 0; i < n-1; i++)
// Last i elements are already in place
for (j = 0; j < n-i-1; j++)
if (X[j] > X[j+1])
{
swap(X[j],X[j+1])
swap(Y[j],Y[j+1]);
}
if (X[j] == X[j+1]&&Y[j]<Y[j+1])
{
swap(X[j],X[j+1])
swap(Y[j],Y[j+1]);
}
}
Since the above algorithm contains 2 nested loops over n.
So, it is O(n^2)